当前位置: 代码迷 >> 综合 >> 画散点图
  详细解决方案

画散点图

热度:26   发布时间:2023-10-27 03:40:00.0

画散点图

import matplotlib
import matplotlib.pyplot as plt
fig = plt.figure()
ax = fig.add_subplot(111)
ax.scatter(列1, 列2, 列1的标签, 列2的标签)
plt.show()

 

posted on 2018-02-23 16:39 小马过_河 阅读(...) 评论(...) 编辑 收藏

  相关解决方案