使用matplotlib进行绘画
程序员文章站
2022-03-19 15:02:10
...
import numpy as np
import matplotlib.pyplot as plt
def simple_line_plot(x,y,figure_no):
plt.figure(figure_no)
plt.plot(x,y)
plt.xlabel("x values")
plt.ylabel("y values")
plt.title("Simple Line")
def simple_dots(x,y,figure_no):
plt.figure(figure_no)
plt.plot(x,y,'or')
plt.xlabel("x values")
plt.ylabel("y values")
plt.title("Simple Dots")
def simple_scatter(x,y,figure_no):
plt.figure(figure_no)
plt.plot(x,y)
plt.xlabel("x values")
plt.ylabel("y values")
plt.title("Simple scatter")
def scatter_with_color(x,y,labels,figure_no):
plt.figure(figure_no)
plt.plot(x,y,c=labels)
plt.xlabel("x values")
plt.ylabel("y values")
plt.title("Scatter with color")
if __name__ == "__main__":
plt.close("all")
x = np.arange(1,100)
print(x)
y = np.array([np.power(xx,2) for xx in x])
print(y)
figure_no = 1
simple_line_plot(x,y,figure_no)
figure_no +=1
simple_dots(x,y,figure_no)
x = np.random.uniform(size=100)
y = np.random.uniform(size=100)
figure_no +=1
simple_scatter(x,y,figure_no)
figure_no+=1
label = np.random.randint(2,size=100)
scatter_with_color(x,y,label,figure_no)
plt.show()
未完。。。
上一篇: js实现禁止浏览器后退按钮
推荐阅读
-
使用PHP进行微信公众平台开发的示例,php公众
-
Python使用matplotlib绘图——fig,ax = plt.subplots()
-
jquery ajax对特殊字符进行转义防止js注入使用示例
-
ajax返回的json内容进行排序使用sort()方法实现
-
php如何使用crypt()函数进行加密的实例代码
-
Python使用matplotlib模块绘制图像并设置标题与坐标轴等信息示例
-
Node.js Koa2使用JWT进行鉴权的方法示例
-
使用Github进行协作开发
-
Excel VBA之删除没有数据的行 使用CountA是否等于0进行判断
-
linux中使用php进行socket编程,报拒绝连接异常,请大家看看