📜  python代码示例中数据框的散点图

📅  最后修改于: 2022-03-11 14:46:24.307000             🧑  作者: Mango

代码示例1
>>> ax2 = df.plot.scatter(x='length',
...                       y='width',
...                       c='species',
...                       colormap='viridis')