由于简书不支持目录结构。文章备份了一份在gitbook,结构更清晰,地址:book.markgao.me/
Jupyter Notebook 高级-魔法命令
1.%run
-
%run 执行python脚本,并将脚本中的函数加载
%run ./hello.py
复制代码
-
可以直接使用import命令导入本机目录下的包
import mymodule.FirstML
复制代码
2.%timeit
-
%timeit 测试代码的性能
-
%%timeit 测试整个代码块
3.%time
-
使用%time让测试只执行一次
-
一个陷阱
使用%timeit 测试多次在每次测试的执行性能不一样的时候测试结果会不准确。 考虑用%timeit 测试一个排序算法,由于第一次执行完毕后数组已经排好序,那么在后面执行的时候,如果使用插入排序等算法就会导致后面999次的时间非常短,导致测试值不准确
4.其他
- 使用%lsmagic查看所有的魔法命令
- 在使用方法后面加?查看文档
Numpy 数据基础
1.加载numpy与查看版本
2.Python List 的特点
-
由于Python List的元素可以存任何类型,在灵活度提升的同时,也导致性能下降了
-
一直替代方法是是使用array可以在构造数组的时候限定类型,但是由于array只是把元素当成一个一维或者多维数组,而并没有当做矩阵,向量,所以也没有提供相应的方法函数,使得在机器学习中非常的不方便
3.numpy.array
-
使用numpy创建数组(和python的array中几乎一样)
-
查看数组元素类型
其他创建numpy.array 的方法
1.创建“0”数组
-
创建一维0数组
-
创建N维0数组,第一个参数shape是数组维度,第二个参数是类型
2.创建全"1"矩阵和创建全"N"矩阵
注意full 默认的数据类型是整形3.生成等步长数组
-
arange
-
linspace
4.random
-
随机整数
-
随机浮点数
Numpy.array 的基本操作
1.基本属性
2. 访问数组
3.reshape 改变维度
Numpy 数组的合并与分割
1.合并操作
-
合并相同维度
-
合并不同维度
2.分割操作
-
分割一维数组和垂直分割二维数组
-
水平分割二维数组
分割的意义:将特征矩阵和label向量分割开
Numpy中的矩阵运算
1.矩阵乘2的操作
2.Universql Function
-
加减乘除
-
其他数学运算
3.矩阵直接的运算
矩阵运算
A = np.arange(4).reshape(2,2)
A
复制代码
array([[0, 1],
[2, 3]])
复制代码
B = np.full((2,2),10)
B
复制代码
array([[10, 10],
[10, 10]])
复制代码
矩阵加减乘除
A+B
复制代码
array([[10, 11],
[12, 13]])
复制代码
A-B
复制代码
array([[-10, -9],
[ -8, -7]])
复制代码
# 对应元素相乘
A*B
复制代码
array([[ 0, 10],
[20, 30]])
复制代码
A/B
复制代码
array([[0. , 0.1],
[0.2, 0.3]])
复制代码
# 矩阵乘法 A矩阵的每一行和B矩阵的每一列做相乘再相加
# A的第i行B的第j列相乘再相加等到的结果是(i,j)坐标的值
A.dot(B)
复制代码
array([[10, 10],
[50, 50]])
复制代码
A
复制代码
array([[0, 1],
[2, 3]])
复制代码
# 转置 行变列
A.T
复制代码
array([[0, 2],
[1, 3]])
复制代码
# 要确保矩阵之间可运算
C = np.full((3,3,3),666)
C+A
复制代码
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
<ipython-input-36-89b16f572c60> in <module>()
1 C = np.full((3,3,3),666)
----> 2 C+A
ValueError: operands could not be broadcast together with shapes (3,3,3) (2,2)
复制代码
向量和矩阵直接的运算
v = np.array([1,2])
复制代码
A
复制代码
array([[0, 1],
[2, 3]])
复制代码
# 向量和矩阵中的每一行做加法
# 自动将低维的元素与高维的每一维的元素进行元素
v+A
复制代码
array([[1, 3],
[3, 5]])
复制代码
np.vstack([v]*A.shape[0])
复制代码
array([[1, 2],
[1, 2]])
复制代码
np.vstack([v]*A.shape[0])+A
复制代码
array([[1, 3],
[3, 5]])
复制代码
# 第二个参数传入一个元组,里面的值分别为v向量在行上面堆叠的次数,和列方向上堆叠的次数
np.tile(v,(2,1))+A
复制代码
array([[1, 3],
[3, 5]])
复制代码
v*A
复制代码
array([[0, 2],
[2, 6]])
复制代码
v.dot(A)
复制代码
array([4, 7])
复制代码
# 向量和矩阵进行运算,会自动判断向量应该取行向量还是列向量
# 这里会自动将v转换成列向量
A.dot(v)
复制代码
矩阵的逆
A
复制代码
array([[0, 1],
[2, 3]])
复制代码
# [linalg]linear algebra [inv] inverse
# 主对角线除以2区负数并对换位置,辅对角线除以2并对换位置(不取负)
# 至少要是一个方阵,才能求逆矩阵
invA = np.linalg.inv(A)
invA
复制代码
array([[-1.5, 0.5],
[ 1. , 0. ]])
复制代码
# 原矩阵乘以逆矩阵,得到的是单位矩阵
A.dot(invA)
复制代码
array([[1., 0.],
[0., 1.]])
复制代码
# 逆矩阵乘以原矩阵,得到的是单位矩阵
invA.dot(A)
复制代码
array([[1., 0.],
[0., 1.]])
复制代码
# [pinv ]puppet inverse 伪逆阵
#
X = np.arange(16).reshape(2,8)
pinvX = np.linalg.pinv(X)
pinvX
复制代码
array([[-1.35416667e-01, 5.20833333e-02],
[-1.01190476e-01, 4.16666667e-02],
[-6.69642857e-02, 3.12500000e-02],
[-3.27380952e-02, 2.08333333e-02],
[ 1.48809524e-03, 1.04166667e-02],
[ 3.57142857e-02, -9.65081753e-18],
[ 6.99404762e-02, -1.04166667e-02],
[ 1.04166667e-01, -2.08333333e-02]])
复制代码
pinvX.shape
复制代码
(8, 2)
复制代码
# 伪逆矩阵的属性,原矩阵乘以伪逆矩阵得到的是单位矩阵,
X.dot(pinvX)
复制代码
array([[ 1.00000000e+00, -2.42861287e-16],
[-5.41233725e-16, 1.00000000e+00]])
复制代码
# 伪逆矩阵乘以矩阵不一定
pinvX.dot(X)
复制代码
array([[ 4.16666667e-01, 3.33333333e-01, 2.50000000e-01,
1.66666667e-01, 8.33333333e-02, 3.95516953e-16,
-8.33333333e-02, -1.66666667e-01],
[ 3.33333333e-01, 2.73809524e-01, 2.14285714e-01,
1.54761905e-01, 9.52380952e-02, 3.57142857e-02,
-2.38095238e-02, -8.33333333e-02],
[ 2.50000000e-01, 2.14285714e-01, 1.78571429e-01,
1.42857143e-01, 1.07142857e-01, 7.14285714e-02,
3.57142857e-02, 2.22044605e-16],
[ 1.66666667e-01, 1.54761905e-01, 1.42857143e-01,
1.30952381e-01, 1.19047619e-01, 1.07142857e-01,
9.52380952e-02, 8.33333333e-02],
[ 8.33333333e-02, 9.52380952e-02, 1.07142857e-01,
1.19047619e-01, 1.30952381e-01, 1.42857143e-01,
1.54761905e-01, 1.66666667e-01],
[-7.72065402e-17, 3.57142857e-02, 7.14285714e-02,
1.07142857e-01, 1.42857143e-01, 1.78571429e-01,
2.14285714e-01, 2.50000000e-01],
[-8.33333333e-02, -2.38095238e-02, 3.57142857e-02,
9.52380952e-02, 1.54761905e-01, 2.14285714e-01,
2.73809524e-01, 3.33333333e-01],
[-1.66666667e-01, -8.33333333e-02, -2.63677968e-16,
8.33333333e-02, 1.66666667e-01, 2.50000000e-01,
3.33333333e-01, 4.16666667e-01]])
复制代码
import numpy as np
L = np.random.random(100)
L
复制代码
array([7.73124723e-01, 2.55426783e-01, 3.01399746e-01, 2.61090729e-01,
9.37397881e-01, 7.38703342e-01, 6.71044552e-01, 5.45700398e-01,
8.77468628e-01, 4.61853354e-03, 5.60603850e-01, 5.79218238e-01,
3.88654023e-01, 9.48737462e-01, 4.92815852e-01, 3.01065857e-01,
1.40609072e-01, 7.05760888e-01, 9.96759228e-01, 2.76513153e-01,
3.81988266e-01, 3.03864793e-01, 9.99262986e-01, 9.33638250e-01,
9.78007851e-01, 7.52558535e-02, 5.01134242e-01, 6.14598914e-01,
5.25678503e-04, 6.19223710e-01, 6.66315716e-01, 1.90884302e-01,
3.02813997e-01, 5.13613830e-01, 2.98942305e-01, 2.49488945e-01,
2.39454358e-01, 3.04904423e-02, 6.49002160e-01, 7.51330392e-01,
5.17789342e-01, 9.86577863e-01, 9.29245299e-02, 2.90256102e-02,
2.41292834e-01, 6.56942621e-01, 7.69101258e-01, 4.37370938e-01,
4.59433757e-01, 5.86539559e-01, 2.05978128e-01, 8.45214439e-01,
5.67217564e-01, 6.81286007e-01, 4.93603790e-01, 2.83595533e-01,
6.29692159e-02, 1.78184831e-02, 5.83401708e-02, 6.20231400e-01,
1.04547868e-01, 1.00415741e-01, 6.91171478e-02, 6.85892030e-01,
9.29855003e-01, 9.99141931e-01, 8.12123673e-01, 1.01615247e-02,
1.00683233e-02, 9.01578390e-01, 6.45368728e-01, 6.71096622e-01,
8.18277343e-01, 6.98780333e-01, 1.49821058e-01, 7.92797641e-01,
4.68906841e-01, 8.65617714e-01, 4.02349154e-01, 2.76732044e-01,
9.16048672e-01, 1.02965929e-01, 4.14111883e-01, 5.86467521e-01,
1.25875230e-01, 3.53990446e-01, 5.62178220e-02, 3.73338109e-01,
2.29659037e-01, 7.08210283e-01, 5.39074658e-01, 8.85796909e-01,
1.94722922e-01, 6.34048518e-01, 2.45683429e-01, 6.93775369e-01,
3.48923102e-01, 8.95471962e-01, 5.12577771e-01, 4.12440566e-01])
复制代码
原生的求和
sum(L)
复制代码
48.31185222315484
复制代码
numpy的求和
np.sum(L)
复制代码
48.311852223154865
复制代码
对比效率,numpy的要快近200倍
big_array = np.random.rand(1000000)
%timeit sum(big_array)
%timeit np.sum(big_array)
复制代码
90.9 ms ± 3.13 ms per loop (mean ± std. dev. of 7 runs, 10 loops each)
416 µs ± 18.8 µs per loop (mean ± std. dev. of 7 runs, 1000 loops each)
复制代码
其他的聚合函数
np.min(big_array)
复制代码
4.152622914421755e-07
复制代码
np.max(big_array)
复制代码
0.9999999324757766
复制代码
big_array.min()
复制代码
4.152622914421755e-07
复制代码
big_array.max()
复制代码
0.9999999324757766
复制代码
二维矩阵的聚合运算
X = np.arange(16).reshape(4,-1)
X
复制代码
array([[ 0, 1, 2, 3],
[ 4, 5, 6, 7],
[ 8, 9, 10, 11],
[12, 13, 14, 15]])
复制代码
# 默认将所有的元素进行聚合
np.sum(X)
复制代码
120
复制代码
# 计算每一列的和,沿着行的方向进行计算(对每一列进行运算)(压缩掉传入的维度)
np.sum(X,axis=0)
复制代码
array([24, 28, 32, 36])
复制代码
np.sum(X,axis=1)
复制代码
array([ 6, 22, 38, 54])
复制代码
# 所有元素乘积
np.prod(X)
复制代码
0
复制代码
np.prod(X+1)
复制代码
20922789888000
复制代码
# 均值
np.mean(X)
复制代码
7.5
复制代码
# 中位数
np.median(X)
复制代码
7.5
复制代码
# 百分位
np.percentile(big_array,q=50)
复制代码
0.19947456304434275
复制代码
np.percentile(big_array,q=20)
复制代码
0.19947456304434275
复制代码
# 五个经常使用的百分位
for percent in (0,25,50,75,100):
print(np.percentile(big_array,q=percent))
复制代码
4.152622914421755e-07
0.2493020139081539
0.4999999491754548
0.7499901597006043
0.9999999324757766
复制代码
# 方差
np.var(big_array)
复制代码
0.08338181012540496
复制代码
# 标准差(方差的算术平方根)
np.std(big_array)
复制代码
0.28875908665426436
复制代码
x = np.random.normal(0,1,size=1000000)
复制代码
np.mean(x)
复制代码
0.0004949797743234279
复制代码
np.std(x)
复制代码
1.0001058659212774
复制代码
索引
# 最小值
np.min(x)
复制代码
-5.119655460488136
复制代码
# 最小值的索引
np.argmin(x)
复制代码
800272
复制代码
排序和使用索引
x = np.arange(16)
复制代码
# 乱序
np.random.shuffle(x)
x
复制代码
array([11, 14, 13, 2, 9, 15, 7, 1, 4, 0, 5, 10, 6, 3, 12, 8])
复制代码
# 排序
np.sort(x)
复制代码
array([ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15])
复制代码
# 上面只是返回了排好的数组,原数组依旧无序
x
复制代码
array([11, 14, 13, 2, 9, 15, 7, 1, 4, 0, 5, 10, 6, 3, 12, 8])
复制代码
# 对原数组排序
x.sort()
x
复制代码
array([ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15])
复制代码
# 创建二维数组
X = np.random.randint(10,size=(4,4))
X
复制代码
array([[2, 3, 1, 3],
[4, 2, 1, 6],
[3, 6, 2, 3],
[8, 9, 3, 8]])
复制代码
# 对二维数组进行排序,默认方向是沿着列方向
np.sort(X)
复制代码
array([[1, 2, 3, 3],
[1, 2, 4, 6],
[2, 3, 3, 6],
[3, 8, 8, 9]])
复制代码
np.sort(X,axis=1)
复制代码
array([[1, 2, 3, 3],
[1, 2, 4, 6],
[2, 3, 3, 6],
[3, 8, 8, 9]])
复制代码
np.sort(X,axis=0)
复制代码
array([[2, 2, 1, 3],
[3, 3, 1, 3],
[4, 6, 2, 6],
[8, 9, 3, 8]])
复制代码
# 再次打乱原一位数组
np.random.shuffle(x)
x
复制代码
array([14, 8, 12, 0, 3, 7, 11, 10, 1, 15, 6, 4, 5, 2, 13, 9])
复制代码
# 返回数组排好序的元素索引位置
np.argsort(x)
复制代码
array([ 3, 8, 13, 4, 11, 12, 10, 5, 1, 15, 7, 6, 2, 14, 0, 9])
复制代码
# 快排,第二个参数是标定点
np.partition(x,3)
复制代码
array([ 0, 1, 2, 3, 4, 7, 5, 8, 9, 6, 10, 15, 11, 12, 13, 14])
复制代码
# 返回的是索引
np.argpartition(x,3)
复制代码
array([ 3, 8, 13, 4, 11, 5, 12, 1, 15, 10, 7, 9, 6, 2, 14, 0])
复制代码
# 沿着列的方向(对行)进行排序,返回索引
np.argsort(X,axis=1)
复制代码
array([[2, 0, 1, 3],
[2, 1, 0, 3],
[2, 0, 3, 1],
[2, 0, 3, 1]])
复制代码
# 第二个参数是每行或者每列的标定点,第三个参数是方向
np.argpartition(X,2,axis=1)
复制代码
array([[2, 0, 1, 3],
[2, 1, 0, 3],
[2, 0, 3, 1],
[2, 0, 3, 1]])
复制代码
Fancy Indexing
引入 numpy 并使用 arange函数创建一个数组
import numpy as np
x = np.arange(16)
x
复制代码
array([ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15])
复制代码
### 支持通过boolean数组来获取元素,True代表感兴趣,False代表不感兴趣3
x[3]
复制代码
3
复制代码
# 获取数组的子区间
x[3:9]
复制代码
array([3, 4, 5, 6, 7, 8])
复制代码
# 获取数组的等步长的区间
x[3:9:2]
复制代码
array([3, 5, 7])
复制代码
通过传入坐标数组获取数组的子元素区间
ind = [3,5,8]
复制代码
x[ind]
复制代码
array([3, 5, 8])
复制代码
支持传入多维坐标数组,将坐标数组中的每一个值作为下标去索引原数组中的值,组合成新的多维数组并返回
ind = np.array([[0,2],[1,3]])
x[ind]
复制代码
array([[0, 2],
[1, 3]])
复制代码
获取转置矩阵
X = x.reshape(4,-1)
X
复制代码
array([[ 0, 1, 2, 3],
[ 4, 5, 6, 7],
[ 8, 9, 10, 11],
[12, 13, 14, 15]])
复制代码
help(np.reshape)
复制代码
Help on function reshape in module numpy.core.fromnumeric:
reshape(a, newshape, order='C')
Gives a new shape to an array without changing its data.
Parameters
----------
a : array_like
Array to be reshaped.
newshape : int or tuple of ints
The new shape should be compatible with the original shape. If
an integer, then the result will be a 1-D array of that length.
One shape dimension can be -1. In this case, the value is
inferred from the length of the array and remaining dimensions.
order : {'C', 'F', 'A'}, optional
Read the elements of `a` using this index order, and place the
elements into the reshaped array using this index order. 'C'
means to read / write the elements using C-like index order,
with the last axis index changing fastest, back to the first
axis index changing slowest. 'F' means to read / write the
elements using Fortran-like index order, with the first index
changing fastest, and the last index changing slowest. Note that
the 'C' and 'F' options take no account of the memory layout of
the underlying array, and only refer to the order of indexing.
'A' means to read / write the elements in Fortran-like index
order if `a` is Fortran *contiguous* in memory, C-like order
otherwise.
Returns
-------
reshaped_array : ndarray
This will be a new view object if possible; otherwise, it will
be a copy. Note there is no guarantee of the *memory layout* (C- or
Fortran- contiguous) of the returned array.
See Also
--------
ndarray.reshape : Equivalent method.
Notes
-----
It is not always possible to change the shape of an array without
copying the data. If you want an error to be raised when the data is copied,
you should assign the new shape to the shape attribute of the array::
>>> a = np.zeros((10, 2))
# A transpose makes the array non-contiguous
>>> b = a.T
# Taking a view makes it possible to modify the shape without modifying
# the initial object.
>>> c = b.view()
>>> c.shape = (20)
AttributeError: incompatible shape for a non-contiguous array
The `order` keyword gives the index ordering both for *fetching* the values
from `a`, and then *placing* the values into the output array.
For example, let's say you have an array:
>>> a = np.arange(6).reshape((3, 2))
>>> a
array([[0, 1],
[2, 3],
[4, 5]])
You can think of reshaping as first raveling the array (using the given
index order), then inserting the elements from the raveled array into the
new array using the same kind of index ordering as was used for the
raveling.
>>> np.reshape(a, (2, 3)) # C-like index ordering
array([[0, 1, 2],
[3, 4, 5]])
>>> np.reshape(np.ravel(a), (2, 3)) # equivalent to C ravel then C reshape
array([[0, 1, 2],
[3, 4, 5]])
>>> np.reshape(a, (2, 3), order='F') # Fortran-like index ordering
array([[0, 4, 3],
[2, 1, 5]])
>>> np.reshape(np.ravel(a, order='F'), (2, 3), order='F')
array([[0, 4, 3],
[2, 1, 5]])
Examples
--------
>>> a = np.array([[1,2,3], [4,5,6]])
>>> np.reshape(a, 6)
array([1, 2, 3, 4, 5, 6])
>>> np.reshape(a, 6, order='F')
array([1, 4, 2, 5, 3, 6])
>>> np.reshape(a, (3,-1)) # the unspecified value is inferred to be 2
array([[1, 2],
[3, 4],
[5, 6]])
复制代码
支持通过传入两个数组(也可以是数组坐标索引的方法),分别作为X坐标和Y坐标,去索引一个二维数组的值
row = np.array([0,1,2])
col = np.array([1,2,3])
X[row,col]
复制代码
array([ 1, 6, 11])
复制代码
X[0,col]
复制代码
array([1, 2, 3])
复制代码
X[:2,col]
复制代码
array([[1, 2, 3],
[5, 6, 7]])
复制代码
支持通过boolean数组来获取元素,True代表感兴趣,False代表不感兴趣
col = [True,False,True,True]
X[1:3,col]
复制代码
array([[ 4, 6, 7],
[ 8, 10, 11]])
复制代码
numpy.array 的比较
x
复制代码
array([ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15])
复制代码
x<3
复制代码
array([ True, True, True, False, False, False, False, False, False,
False, False, False, False, False, False, False])
复制代码
x==3
复制代码
array([False, False, False, True, False, False, False, False, False,
False, False, False, False, False, False, False])
复制代码
2*x == 24 - 4*x
复制代码
array([False, False, False, False, True, False, False, False, False,
False, False, False, False, False, False, False])
复制代码
X<6
复制代码
array([[ True, True, True, True],
[ True, True, False, False],
[False, False, False, False],
[False, False, False, False]])
复制代码
np.sum(x<=3)
复制代码
4
复制代码
# 非0元素,在bool数组中true为1,false为0
np.count_nonzero(x<=3)
复制代码
4
复制代码
# 任意一个等于0则返回True
np.any(x==0)
复制代码
True
复制代码
# 所有的元素都等于0返回True
np.all(x==0)
复制代码
False
复制代码
# 沿着列的方向(看每一行)有多少偶数
np.sum(X%2==0,axis=1)
复制代码
array([2, 2, 2, 2])
复制代码
# x是一个数组,对数组分别进行>3和<10的操作以后再做位运算,所以是 &不是&&
np.sum((x>3) & (x<10))
复制代码
6
复制代码
# x<5 获取的是坐标,x[x<5]获取的是具体的值
x[x<5]
复制代码
array([0, 1, 2, 3, 4])
复制代码