Set
-
Data Structure in PythonDynamicPL/Python 2019. 10. 18. 14:54
1. Overview There are quite a few data structures available. The builtins data structures are lists, tuples, dictionaries, strings, sets, and frozensets. Lists, strings, and tuples are ordered sequences of objects. Unlike strings that contain only characters, list and tuples can contain any type of objects. Lists and tuples are like arrays. Tuples like strings are immutables. Lists are mutables ..
-
SetMath/Probability 2019. 10. 14. 13:09
1. Overview Bayesian inference is a method of statistical inference in which Bayes' theorem is used to update the probability for a hypothesis as more evidence or information becomes available. Bayesian inference is an important technique in statistics, and especially in mathematical statistics. Bayesian updating is particularly important in the dynamic analysis of a sequnce of data. Bayesian in..