vcbeaut 发表于 2020-9-26 16:51:49

matplotlib画图

x 坐标数据
y 坐标数据

怎么用matplotlib画出来?求大牛指点

中心正式 发表于 2020-9-26 17:09:45

import matplotlib.pyplot as plt
import matplotlib

x =
y =

plt.scatter(x,y,s=20,c='r', marker = 'o', alpha=0.5)

plt.show()

中心正式 发表于 2020-9-26 17:11:49

中心正式 发表于 2020-9-26 17:09
import matplotlib.pyplot as plt
import matplotlib



x 和 y 的数据个数怎么不一样?

疾风怪盗 发表于 2020-9-26 17:26:56

你这,都不学一下,再来问问题的么。。。。。。。。。。。。。。。。{:10_284:}

vcbeaut 发表于 2020-9-26 19:13:42

疾风怪盗 发表于 2020-9-26 17:26
你这,都不学一下,再来问问题的么。。。。。。。。。。。。。。。。

x是区间,刚好三个区间。
页: [1]
查看完整版本: matplotlib画图