摘要:介绍简单的数据可视化方法
pandas.tail()
Return the last n rows.
This function returns last n rows from the object based on position. It is useful for quickly verifying data, for example, after sorting or appending rows.
散点分类图
1 | import matplotlib.pyplot as plt |
- s表示点的大小,
- c就是color嘛,
- marker就是点的形状,比如o,x,参考文档选择需要的形状
- alpha,点点的亮度,label,标签啦
- 前两个参数就是点的横纵坐标
1 | plt.scatter(C1[:,0],C1[:,1],s=30,c='red',marker='o',alpha=0.5,label='C1') |
折线图
1 | 0.1, n_iter=10) ppn = Perceptron(eta= |
range(1, len(ppn.errors_) + 1)
X轴坐标ppn.errors_
Y 轴坐标marker
点的形状
决策面
1 | def plot_decision_regions(X, y, classifier, resolution=0.02): |