目录
- 简单的图表设置
- 直方图
- 垂直条状图
- 水平条状图
- 多序列条状图
- 多序列堆积条状图
- 其他条形图
- 饼状图
- 箱线图
简单的图表设置
- 下载matplotlib库,引入pyplot模块,并命名为plt
import matplotlib.pyplot as plt
- 生成简单图表
plt.plot([1, 2 , 3, 4])
输入点,默认用蓝线串一起
- 展现单个点
plt.plot([1, 2, 3, 4], [1, 4, 8, 16], 'ro')
plt.show()
- 加入标题 title
plt.axis([0, 10, 0, 30])
plt.title('My first plot')
plt.plot([1, 2, 3, 4], [1, 4, 8, 16], 'ro')
plt.show()
- 设置x 轴和Y轴的范围 axis
plt.axis([0, 10, 0, 30])
plt.title('My first plot')
plt.plot([1, 2, 3, 4], [1, 4, 8, 16], 'ro')
plt.show()
- 改变线条的粗细 linewidth
plt.plot([1, 2, 4, 2, 1, 0, 1, 2, 1, 4], linewidth=10.0)
plt.show()
- 给x轴和y轴命名xlabel, ylabel
plt.axis([0, 5, 0, 20])
plt.title('My first plot')
plt.xlabel('Counting')
plt.ylabel('Square balues')
plt.plot([1, 2, 3, 4], [1, 4, 8, 16], 'ro')
plt.show()
- 指定字体,改变字体的大小,指定字体的颜色 fontsize, fontname, color
plt.axis([0, 5, 0, 20])
plt.title('My first plot', fontsize=20,fontname='Times New Roman')
plt.xlabel('Counting', color='green')
plt.ylabel('Square balues', color='blue')
plt.plot([1, 2, 3, 4], [1, 4, 8, 16], 'ro')
plt.show()
- 在图表的任意位置添加文本 text
plt.axis([0, 5, 0, 20])
plt.title('My first plot', fontsize=20,fontname='Times New Roman')
plt.xlabel('Counting', color='green')
plt.ylabel('Square balues', color='blue')
plt.text(1, 1.5, 'First')
plt.text(2, 4.5, 'Second')
plt.text(3, 9.5, 'Third')
plt.text(4, 16.5, 'Fourth')
plt.plot([1, 2, 3, 4], [1, 4, 8, 16], 'ro')
plt.show()
- 在图表中添加数学表达式 $ ....$
plt.axis([0, 5, 0, 20])
plt.title('My first plot', fontsize=20,fontname='Times New Roman')
plt.xlabel('Counting', color='green')
plt.ylabel('Square balues', color='blue')
plt.text(1, 1.5, 'First')
plt.text(2, 4.5, 'Second')
plt.text(3, 9.5, 'Third')
plt.text(4, 16.5, 'Fourth')
plt.text(1.1, 12, r'$y = x^2$', fontsize=20, bbox={'facecolor' : 'yellow', 'alpha' : 0.2})
plt.plot([1, 2, 3, 4], [1, 4, 8, 16], 'ro')
plt.show()
- 添加网格 grid
plt.axis([0, 5, 0, 20])
plt.title('My first plot', fontsize=20,fontname='Times New Roman')
plt.xlabel('Counting', color='green')
plt.ylabel('Square balues', color='blue')
plt.text(1, 1.5, 'First')
plt.text(2, 4.5, 'Second')
plt.text(3, 9.5, 'Third')
plt.text(4, 16.5, 'Fourth')
plt.text(1.1, 12, r'$y = x^2$', fontsize=20, bbox={'facecolor' : 'yellow', 'alpha' : 0.2})
plt.grid(True)
plt.plot([1, 2, 3, 4], [1, 4, 8, 16], 'ro')
plt.show()
- 添加图例 legend
plt.axis([0, 5, 0, 20])
plt.title('My first plot', fontsize=20,fontname='Times New Roman')
plt.xlabel('Counting', color='green')
plt.ylabel('Square balues', color='blue')
plt.text(1, 1.5, 'First')
plt.text(2, 4.5, 'Second')
plt.text(3, 9.5, 'Third')
plt.text(4, 16.5, 'Fourth')
plt.text(1.1, 12, r'$y = x^2$', fontsize=20, bbox={'facecolor' : 'yellow', 'alpha' : 0.2})
plt.grid(True)
plt.plot([1, 2, 3, 4], [1, 4, 8, 16], 'ro')
plt.legend(['First series'])
plt.show()
- 确定图例位置 loc
0 —— 最佳位置
1 —— 右上角
2 —— 左上角
3 —— 右下角
4 —— 左下角
5 —— 右侧 ——7 —— 右侧垂直居中
6 —— 左侧垂直居中
8 —— 下方水平居中
9 —— 上方水平居中
10 —— 正中间
plt.axis([0, 5, 0, 20])
plt.title('My first plot', fontsize=20,fontname='Times New Roman')
plt.xlabel('Counting', color='green')
plt.ylabel('Square balues', color='blue')
plt.text(1, 1.5, 'First')
plt.text(2, 4.5, 'Second')
plt.text(3, 9.5, 'Third')
plt.text(4, 16.5, 'Fourth')
plt.text(1.1, 12, r'$y = x^2$', fontsize=20, bbox={'facecolor' : 'yellow', 'alpha' : 0.2})
plt.grid(True)
plt.plot([1, 2, 3, 4], [1, 4, 8, 16], 'ro')
plt.plot([1, 2, 3, 4], [0.8, 3.5, 8, 15], 'g^')
plt.plot([1, 2, 3, 4], [0.5, 2.5, 4, 12], 'b*')
plt.legend(['First series', 'Second series', 'Third series'], loc=2)
plt.show()
- 日期处理
导入matplotlib.dates模块,该模块用于管理日期类型的数据。
定义时间尺度
MonthLocator 函数 表示:月份
Daylocator() 函数,表示: 日期
在X轴上设置两种不同的标签:
set_major_locator()函数:月份
set_minor_formatter()函数:日期
- 颜色
b —— 蓝色
g —— 绿色
r —— 红色
c —— 蓝绿色
m —— 洋红
y —— 黄色
k —— 黑色
w —— 白色
要选用实用的颜色,考虑色弱人群
线性图
x = np.arange(-2*np.pi, 2*np.pi, 0.01)
y = np.sin(3 * x)/x
plt.plot(x,y)
plt.show()
直方图hist()
#生成100个0-100的随机数
pop = np.random.randint(0, 100, 100)
n, bin, patches = plt.hist(pop, bins=100)
plt.show()
垂直条状图: bar() 函数
- 简单的条状图
index= [0, 1, 2, 3, 4]
values = [5, 7, 3, 4, 6]
plt.bar(index, values)
plt.show()
- 将轴标签移位,和代替 xticks()
index = np.arange(5)
values = [5, 6, 3, 4, 6]
plt.bar(index, values)
plt.xticks(index+0.2,['a', 'b', 'c', 'd', 'e'])
plt.show()
- 带有误差线的条状图
yerr关键字参数:可传入包含标准差的列表
error_kw={} , 接收显示误差线的关键字函数
eColor:指定误差线的颜色
capsize :指定误差线两头横线的宽度
alpha:控制彩色条状图的透明度, 范围0-1
index = np.arange(5)
values = [5, 6, 3, 4, 6]
std = [0.8, 2, 0.4, 0.9, 1.3]
plt.title('A Bar Chart')
plt.bar(index, values, yerr = std, error_kw = {'ecolor' : '0.2', 'capsize' :6}, alpha=0.7, label = 'First')
plt.xticks(index+0.2,['a', 'b', 'c', 'd', 'e'])
plt.legend(loc=2)
plt.show()
水平条状图 barh()函数
x, y轴与垂直条状图相反
index = np.arange(5)
values = [5, 6, 3, 4, 6]
std = [0.8, 2, 0.4, 0.9, 1.3]
plt.title('A Horizontal Bar Chart')
plt.barh(index, values, xerr = std, error_kw = {'ecolor' : '0.6', 'capsize' :3}, alpha=0.9, label = 'First')
plt.yticks(index+0.2,['a', 'b', 'c', 'd', 'e'])
plt.legend(loc=5)
plt.show()
多序列条状图
index= np.arange(5)
values1 = [5, 6, 7, 3, 4]
values2 = [5, 6, 5, 2, 4]
values3 = [7, 2, 5, 7, 2]
bw = 0.3
plt.axis([0, 5, 0, 8])
plt.title('A Bar Chart', fontsize = 20)
plt.bar(index, values1, bw, color = 'b')
plt.bar(index+bw, values2, bw, color = 'c')
plt.bar(index+2*bw, values3, bw, color='m')
plt.xticks(index+1.5*bw, ['a', 'b', 'c', 'd', 'e'])
plt.show()
多序列堆积条状图 bottom关键字参数
series1 = np.array([3, 4, 5, 3])
series2 = np.array([1, 2, 2, 5])
series3 = np.array([2, 3, 3, 4])
index = np.arange(4)
plt.axis([0, 4, 0, 15])
plt.title('A Bar Chart', fontsize = 20)
plt.bar(index,series1, color = 'k')
plt.bar(index, series2, color = 'c', bottom= series1)
plt.bar(index, series3, color='m', bottom = ( series2+ series1))
plt.xticks(index+0.2, ['a', 'b', 'c', 'd', 'e'])
plt.show()
其他条形图
x0 = np.arange(8)
y1 = np.array([1, 3, 4, 6, 4, 3, 2, 1])
y2 = np.array([1, 2, 5, 3, 5, 3,1, 1])
plt.ylim(-7,7)
plt.bar(x0, y1, 0.9, facecolor = 'm', edgecolor = 'w')
plt.bar(x0, -y2, 0.9, facecolor = 'c', edgecolor = 'w')
plt.xticks(())
plt.grid(True)
for x, y in zip(x0, y1):
plt.text(x , y + 0.05, '%d' % y, ha = 'center', va = 'bottom')
for x, y in zip(x0, y2):
plt.text(x , -y -0.05, '%d' %y, ha = 'center', va = 'top')
plt.show()
饼状图 pie函数()
color : 颜色
labels : 每一小块添加标签
axis() 函数, 字符串equal作为参数,:绘制标准的圆形饼图
explode, 取值范围0-1:抽取某块
startangle:调整饼图的旋转角度
shadow, 设置为True:添加阴影效果
autopct:显示百分比
- 普通饼状图 pie
labels = ['Nokia', 'Samsung', 'Apple', 'Lumia']
values = [10, 30, 45, 15]
colors = ['y', 'k', 'm', 'b']
plt.pie(values, labels = labels, colors = colors)
plt.axis('equal')
plt.show()
- 抽取并旋转 explode, startangle
labels = ['Nokia', 'Samsung', 'Apple', 'Lumia']
values = [10, 30, 45, 15]
colors = ['y', 'k', 'm', 'b']
explode = [0.3, 0, 0, 0]
plt.pie(values, labels = labels, colors = colors, explode = explode, startangle = 180)
plt.axis('equal')
plt.show()
- 显示百分比,并添加阴影效果 autopct, shadow
labels = ['Nokia', 'Samsung', 'Apple', 'Lumia']
values = [10, 30, 45, 15]
colors = ['y', 'k', 'm', 'b']
explode = [0.3, 0, 0, 0]
plt.pie(values, labels = labels, colors = colors, explode = explode, startangle = 180, shadow = True, autopct = '%1.1f%%')
plt.axis('equal')
plt.title('A Pie Chart')
plt.show()
箱线图 boxplot()
dataset = [2, 4, 9, 1, 5,
5, 6, 3, 2, 2,
7, 8, 3, 6, 2,
0, 2, 5, 3, 2]
plt.boxplot(dataset, vert= False)
plt.show()