NumPy 本身不提供建模和科学函数。NumPy 属于比较基础的库,虽然也提供一些诸如读取数据之类的方法,但是很多时候我们会使用 Pandas(基于 NumPy)去实现。 NumPy ndarray: 多维数组对象 NumPy的核心特征之一:N-维数组对象 ndarray;ndarray 是一个通用的多维 同类 数据容器。 ndarray 属性 ndarray shape 属性,用来表征数组每一维...
正态分布的定义 若随机变量 X X X 的分布密度是 n ( x ; μ , σ ) = 1 2 π σ exp ( − 1 2 σ 2 ( x − μ ) 2 ) , − ∞ < x < ∞ n(x ; \mu, \sigma)=\frac{1}{\sqrt{2 \pi \sigma}} \exp \left(-\frac{1}{2 \sigma^{2}}(x-\mu)^{2}\ri...
Note for chapter 2 Probability and Distributions (概率与分布) 一些符号: 符号 表示 定义 ∀ \forall ∀ for all symbol 对所有 ∀ x : P ( x ) \forall x: P(x) ∀ x : P ( x ) 表示 P ( x ) P(x) P ( x ) 对于所有 x x x 为真 Probability 概率 ...
Note for chapter 1 Data Visualization (数据可视化) Vacabulary for this chapter left skewed 左倾斜 symmetric 对称 right skewed 右倾斜 outliers 异常值,极端值 Qualitative Variables and Quantitative Variables Categorical (q...
Vacabulary for this chapter optimal strategy 最优策略 mutually exclusive 互相排斥的(相互独立) collectively exhaustive 完全穷尽 optimistic 乐观的 conservative 保守的 chronological 按(时间)先后顺序的 sensitivity 灵敏度 prior probability...
Vacabulary for this chapter Operations Research 运筹学 quantitative 定量的 alternative 选择性的; 替代选择,可供选择的事物 constraints 约束条件 criterion 准则 replicas 复制品 assumptions 假设 restrictions 限制 deterministic 确定性的 stochas...
本文记录 Python 语言在语言语义层面上的语言特性。 动态引用、强类型 Python 是动态引用语言,类似 PHP。比如: In [ 18 ]: a = 5 In [ 19 ]: type(a) Out[ 19 ]: int In [ 20 ]: a = 'foo' In [ 21 ]: type(a) Out[ 21 ]: str 我们给 a 复制 int 类型和 string 类型都是没问...
什么是矩阵 形如 ( 1 3 2 4 5 6 ) \left(\begin{array}{ll}{1} & {3} \\ {2} & {4} \\ {5} & {6}\end{array}\right) ⎝ ⎛ 1 2 5 3 4 6 ⎠ ⎞ 矩阵加减 例如,已知 A = ( 1 3 2 4 5 6 ) A=\left(\begin{array}{ll}{1...
The Theorem of Pythagoras(毕达哥拉斯定理) a 2 + b 2 = c 2 a^{2}+b^{2}=c^{2} a 2 + b 2 = c 2 if c c c is the length of the hypotenuse and a a a and b b b are the shorter side lengths of a right-angled triangl...
Real line, decimals and significant figures(实线,小数,和有效数字) Sets and elements A set is a collection of objects, referred to as elements. A set may be represented, for example, by a list of elements surro...