摘要: python matplotlib.pyplot散点图详解(1) 一、创建散点图 可以用scatter函数创建散点图 并使用show函数显示散点图 代码如下: import matplotlib.pyplot as plt #导入模块 x = [5, 7, 8, 10, 6] y = [3, 7, 阅读全文
posted @ 2020-09-20 09:03 KevinLikesCoding 阅读(9401) 评论(0) 推荐(1) 编辑