python如何画散点图

在import matplotlib.pyplot进行调用
以下面的图片为例
python如何画散点图_第1张图片

使用plt的scatter函数,这个是画散点图的函数

plt.scatter(beer["sodium"], beer["cost"],c=colors[beer["cluster"]])

plt.scatter(centers.sodium, centers.cost, linewidths=3, marker='*', s=300, c='y')

plt.xlabel("sodium")
plt.ylabel("cost")

其中,beer[“sodium”]是X轴的数据,beer[“cost”]是Y轴的数据,c表示的该点的颜色是根据beer[“cluster”]来涂的,比如该点的cluster是0,则为绿色,是1则为红色…以此为例

linewidth是星星的线宽度
market就是表示点的形状是啥,可以是星星,也可以是大圆点,也可以是别的
c就是color,可以代表颜色
python如何画散点图_第2张图片

这就是画图表散点图的方法

你可能感兴趣的:(python方法)