Matplotlib - 散点图
散点图用于在水平坐标轴和垂直坐标轴上绘制数据点,以显示一个变量受另一个变量影响的程度。 数据表中的每一行都由一个标记表示,其位置取决于其在 X 坐标轴和 Y 坐标轴上设置的列中的值。 第三个变量可以设置为对应于标记的颜色或大小,从而为绘图添加另一个维度。
下面的脚本用两种不同的颜色绘制了成绩范围与男孩和女孩成绩的散点图。
import matplotlib.pyplot as plt girls_grades = [89, 90, 70, 89, 100, 80, 90, 100, 80, 34] boys_grades = [30, 29, 49, 48, 100, 48, 38, 45, 20, 30] grades_range = [10, 20, 30, 40, 50, 60, 70, 80, 90, 100] fig=plt.figure() ax=fig.add_axes([0,0,1,1]) ax.scatter(grades_range, girls_grades, color='r') ax.scatter(grades_range, boys_grades, color='b') ax.set_xlabel('Grades Range') ax.set_ylabel('Grades Scored') ax.set_title('scatter plot') plt.show()