文章目录
数据分析四剑客
Numpy
ndarray
数组和标量之间的运算
基本的索引和切片
数学和统计方法
线性代数
Pandas
Matplotlib
python
>>> import matplotlib.pyplot as plt
>>> x = [1, 2, 3, 4, 5]
>>> y = [2.3, 3.4, 1.2, 6.6, 7.0]
>>> plt.scatter(x, y, color='r', marker='+')
>>> plt.show()