python- plot 画图-plot and bar
程序员文章站
2022-07-13 11:02:24
...
import matplotlib.pyplot as plt
import numpy as np
import pandas as pd
x = [0, 1, 2, 3, 4]
y = [0, 2, 4, 6, 8]
# resize graph
plt.figure(figsize = (5,3), dpi= 200)
plt.plot(x, y, label = 'y = 2x', color = 'red',
linewidth = 2, marker = '.', linestyle = '--',
markersize = 10, markeredgecolor = 'blue')
x2 = np.arange(0, 4.5, 0.5)
plt.plot(x2, x2 ** 2, 'b', label = 'y = x^2')
plt.title('our graph')
plt.xlabel('x Axis')
plt.ylabel('y Axis')
plt.xticks([0, 1, 2, 3, 4])
plt.yticks([0, 2, 4, 6, 8, 10, 12])
plt.savefig('mygraph.png', dpi = 300) # save fig
plt.legend()
plt.show()
labels = ['A', 'B', 'C']
values = [1, 4, 2]
bars = plt.bar(labels, values)
bars[0].set_hatch('/')
bars[1].set_hatch('o')
bars[2].set_hatch('*')
plt.figure(figsize = (6, 4))
plt.show()
推荐阅读
-
解决python中使用plot画图,图不显示的问题
-
matlab 和octave笔画之如何画图表 plot()函数的简单介绍
-
matplotlib 之 pyplot 中常用方法的源码调用过程(plt.plot、plt.scatter、plt.hist、plt.bar、plt.show、plt.savefig)
-
python- plot 画图-plot and bar
-
解决python中使用plot画图,图不显示的问题
-
MATLAB用plot画图使用DatetimeTickFormat设置坐标日期格式使用英文日期(月份)
-
MATLAB画图函数plot简单用法
-
matlab 和octave笔画之如何画图表 plot()函数的简单介绍
-
matlab中plot3,mesh,grid三者画图的区别
-
七、Pandas—— Plot 画图