当前位置:   article > 正文

全网最全——50题matplotlib从入门到精通——搞定数据分析_matplotlib库题目

matplotlib库题目

强烈推荐!!!!!!建议直接点赞收藏,方便接下来使用。

Matplotlib 是 Python 的绘图库。它可与 NumPy 一起使用,提供了一种有效的 MatLab 开源替代方案,也可以和图形工具包一起使用。

虽然相比其他图形库(Seaborn | pyecharts | plotly | bokeh | pandas_profiling )这个库丑丑呆呆的,甚至有点难用,但人家毕竟是开山始祖,方法全,能够支持你各类骚操作的需求。可以说是现在python数据分析中,用的人最多的图形库了。

目录

一、导入

1.导入matplotlib库简写为plt

二、基本图表

2.用plot方法画出x=(0,10)间sin的图像

3.用点加线的方式画出x=(0,10)间sin的图像

4.用scatter方法画出x=(0,10)间sin的点图像

5.用饼图的面积及颜色展示一组4维数据

6.绘制一组误差为±0.8的数据的误差条图

7.绘制一个柱状图

8.绘制一个水平方向柱状图

9.绘制1000个随机值的直方图

10.设置直方图分30个bins,并设置为频率分布

11.在一张图中绘制3组不同的直方图,并设置透明度

12.绘制一张二维直方图

13.绘制一张设置网格大小为30的六角形直方图

三、自定义图表元素

14.绘制x=(0,10)间sin的图像,设置线性为虚线

15.设置y轴显示范围为(-1.5,1.5)

16.设置x,y轴标签variable x,value y

17.设置图表标题“三角函数”

18.显示网格

19.绘制平行于x轴y=0.8的水平参考线

20.绘制垂直于x轴x<4 and x>6的参考区域,以及y轴y<0.2 and y>-0.2的参考区域

21.添加注释文字sin(x)

22.用箭头标出第一个峰值

四、自定义图例

23.在一张图里绘制sin,cos的图形,并展示图例

24.调整图例在左上角展示,且不显示边框

25.调整图例在画面下方居中展示,且分成2列

26.绘制的图像,并只显示前2者的图例

27.将图例分不同的区域展示

五、自定义色阶

28.展示色阶

29.改变配色为'gray'

30.将色阶分成6个离散值显示

六、多子图

31.在一个1010的画布中,(0.65,0.65)的位置创建一个0.20.2的子图

32.在2个子图中,显示sin(x)和cos(x)的图像

33.用for创建6个子图,并且在图中标识出对应的子图坐标

34.设置相同行和列共享x,y轴

35.用[]的方式取出每个子图,并添加子图座标文字

36.组合绘制大小不同的子图,样式如下

37.显示一组二维数据的频度分布,并分别在x,y轴上,显示该维度的数据的频度分布

七、三维图像

38.创建一个三维画布

39.绘制一个三维螺旋线

40.绘制一组三维点

八、宝可梦数据集可视化

41.展示前5个宝可梦的Defense,Attack,HP的堆积条形图

42.展示前5个宝可梦的Attack,HP的簇状条形图

43.展示前5个宝可梦的Defense,Attack,HP的堆积图

44.公用x轴,展示前5个宝可梦的Defense,Attack,HP的折线图

45.展示前15个宝可梦的Attack,HP的折线图

46.用scatter的x,y,c属性,展示所有宝可梦的Defense,Attack,HP数据

47.展示所有宝可梦的攻击力的分布直方图,bins=10

48.展示所有宝可梦Type 1的饼图

49.展示所有宝可梦Type 1的柱状图

50.展示综合评分最高的10只宝可梦的系数间的相关系数矩阵


一、导入

1.导入matplotlib库简写为plt

In [ ]

  1. import matplotlib.pyplot as plt
  2. import numpy as np

二、基本图表

2.用plot方法画出x=(0,10)间sin的图像

In [ ]

  1. x = np.linspace(0, 10, 30)
  2. plt.plot(x, np.sin(x));

<matplotlib.figure.Figure at 0x21e8b022ef0>

其中:np.linkspace(0,10,30)是numpy中的一种方法,意思是 x轴的范围从0到10,绘制出来的函数总共平均取30个点导入相应的表达式中绘制出图像。

3.用点加线的方式画出x=(0,10)间sin的图像

In [ ]

plt.plot(x, np.sin(x), '-o');

<matplotlib.figure.Figure at 0x21e8d1046d8>

4.用scatter方法画出x=(0,10)间sin的点图像

In [ ]

plt.scatter(x, np.sin(x));

<matplotlib.figure.Figure at 0x21e8d104f98>

其中:我们从上面知道,plt.plot()f方法是用来画直线图的,而plt.scatter()用来画散点图。

5.用饼图的面积及颜色展示一组4维数据

In [ ]

  1. rng = np.random.RandomState(0)#rng(一个伪随机数生成器,即 np.random.RandomState() ),
  2. x = rng.randn(100)
  3. y = rng.randn(100)
  4. colors = rng.rand(100)
  5. sizes = 1000 * rng.rand(100)
  6. plt.scatter(x, y, c=colors, s=sizes, alpha=0.3,
  7. cmap='viridis')
  8. plt.colorbar(); # 展示色阶

具体来讲,randn是从标准正态分布中返回一个或多个样本值。正态分布,也即这些随机数的期望为0,方差为1;rand则会产生[0, 1)之间的随机数。

关于记忆方法,我们可以把randn中的n看成是正态分布(Normal distribution)中“Normal”的缩写。

 

<matplotlib.figure.Figure at 0x21e8d1e8780>

6.绘制一组误差为±0.8的数据的误差条图

In [ ]

  1. x = np.linspace(0, 10, 50)
  2. dy = 0.8
  3. y = np.sin(x) + dy * np.random.randn(50)
  4. plt.errorbar(x, y, yerr=dy, fmt='.k')
<Container object of 3 artists>

<matplotlib.figure.Figure at 0x21e8d26a208>

7.绘制一个柱状图

In [ ]

  1. x = [1,2,3,4,5,6,7,8]
  2. y = [3,1,4,5,8,9,7,2]
  3. label=['A','B','C','D','E','F','G','H']
  4. plt.bar(x,y,tick_label = label);#plt.bar()方法用来画柱状图

<matplotlib.figure.Figure at 0x21e8d2d55c0>

8.绘制一个水平方向柱状图

In [ ]

plt.barh(x,y,tick_label = label);

<matplotlib.figure.Figure at 0x21e8d1bd0f0>

9.绘制1000个随机值的直方图

In [ ]

  1. data = np.random.randn(1000)
  2. plt.hist(data);

<matplotlib.figure.Figure at 0x21e8d39d400>

10.设置直方图分30个bins,并设置为频率分布

In [ ]

  1. plt.hist(data, bins=30,histtype='stepfilled', density=True)
  2. plt.show();

<matplotlib.figure.Figure at 0x21e8d3e2b38>

11.在一张图中绘制3组不同的直方图,并设置透明度

In [ ]

  1. x1 = np.random.normal(0, 0.8, 1000)
  2. x2 = np.random.normal(-2, 1, 1000)
  3. x3 = np.random.normal(3, 2, 1000)
  4. kwargs = dict(alpha=0.3, bins=40, density = True)
  5. plt.hist(x1, **kwargs);
  6. plt.hist(x2, **kwargs);
  7. plt.hist(x3, **kwargs);

<matplotlib.figure.Figure at 0x21e8d2255c0>

12.绘制一张二维直方图

In [ ]

  1. mean = [0, 0]
  2. cov = [[1, 1], [1, 2]]
  3. x, y = np.random.multivariate_normal(mean, cov, 10000).T
  4. plt.hist2d(x, y, bins=30);

<matplotlib.figure.Figure at 0x21e8d1e0e80>

13.绘制一张设置网格大小为30的六角形直方图

In [ ]

plt.hexbin(x, y, gridsize=30);

<matplotlib.figure.Figure at 0x21e8d3e29e8>

三、自定义图表元素

14.绘制x=(0,10)间sin的图像,设置线性为虚线

In [ ]

  1. x = np.linspace(0,10,100)
  2. plt.plot(x,np.sin(x),'--');

<matplotlib.figure.Figure at 0x21e8d3e2cc0>

15.设置y轴显示范围为(-1.5,1.5)

In [ ]

  1. x = np.linspace(0,10,100)
  2. plt.plot(x, np.sin(x))
  3. plt.ylim(-1.5, 1.5);

<matplotlib.figure.Figure at 0x21e8e45e710>

16.设置x,y轴标签variable x,value y

In [ ]

  1. x = np.linspace(0.05, 10, 100)
  2. y = np.sin(x)
  3. plt.plot(x, y, label='sin(x)')
  4. plt.xlabel('variable x');
  5. plt.ylabel('value y');

<matplotlib.figure.Figure at 0x21e8e4c1358>

17.设置图表标题“三角函数”

In [ ]

  1. x = np.linspace(0.05, 10, 100)
  2. y = np.sin(x)
  3. plt.plot(x, y, label='sin(x)')
  4. plt.title('三角函数');

<matplotlib.figure.Figure at 0x21e8e55eac8>

18.显示网格

In [ ]

  1. x = np.linspace(0.05, 10, 100)
  2. y = np.sin(x)
  3. plt.plot(x, y)
  4. plt.grid()

<matplotlib.figure.Figure at 0x21e8e5974a8>

19.绘制平行于x轴y=0.8的水平参考线

In [ ]

  1. x = np.linspace(0.05, 10, 100)
  2. y = np.sin(x)
  3. plt.plot(x, y)
  4. plt.axhline(y=0.8, ls='--', c='r')
<matplotlib.lines.Line2D at 0x21e8e614eb8>

<matplotlib.figure.Figure at 0x21e8e5f02b0>

20.绘制垂直于x轴x<4 and x>6的参考区域,以及y轴y<0.2 and y>-0.2的参考区域

In [ ]

  1. x = np.linspace(0.05, 10, 100)
  2. y = np.sin(x)
  3. plt.plot(x, y)
  4. plt.axvspan(xmin=4, xmax=6, facecolor='r', alpha=0.3) # 垂直x轴
  5. plt.axhspan(ymin=-0.2, ymax=0.2, facecolor='y', alpha=0.3); # 垂直y轴

<matplotlib.figure.Figure at 0x21e8e5f9780>

21.添加注释文字sin(x)

In [ ]

  1. x = np.linspace(0.05, 10, 100)
  2. y = np.sin(x)
  3. plt.plot(x, y)
  4. plt.text(3.2, 0, 'sin(x)', weight='bold', color='r');

<matplotlib.figure.Figure at 0x21e8d423cf8>

22.用箭头标出第一个峰值

In [ ]

  1. x = np.linspace(0.05, 10, 100)
  2. y = np.sin(x)
  3. plt.plot(x, y)
  4. plt.annotate('maximum',xy=(np.pi/2, 1),xytext=(np.pi/2+1, 1),
  5. weight='bold',
  6. color='r',
  7. arrowprops=dict(arrowstyle='->', connectionstyle='arc3', color='r'));

<matplotlib.figure.Figure at 0x21e8e59c518>

四、自定义图例

23.在一张图里绘制sin,cos的图形,并展示图例

In [ ]

  1. x = np.linspace(0, 10, 1000)
  2. fig, ax = plt.subplots()
  3. ax.plot(x, np.sin(x), label='sin')
  4. ax.plot(x, np.cos(x), '--', label='cos')
  5. ax.legend();

<matplotlib.figure.Figure at 0x21e8d22eb00>

24.调整图例在左上角展示,且不显示边框

In [ ]

  1. ax.legend(loc='upper left', frameon=False);
  2. fig

<matplotlib.figure.Figure at 0x21e8d22eb00>

25.调整图例在画面下方居中展示,且分成2列

In [ ]

  1. ax.legend(frameon=False, loc='lower center', ncol=2)
  2. fig

<matplotlib.figure.Figure at 0x21e8d22eb00>

26.绘制的图像,并只显示前2者的图例

In [ ]

  1. y = np.sin(x[:, np.newaxis] + np.pi * np.arange(0, 2, 0.5))
  2. lines = plt.plot(x, y)
  3. # lines 是 plt.Line2D 类型的实例的列表
  4. plt.legend(lines[:2], ['first', 'second']);
  5. # 第二个方法
  6. #plt.plot(x, y[:, 0], label='first')
  7. #plt.plot(x, y[:, 1], label='second')
  8. #plt.plot(x, y[:, 2:])
  9. #plt.legend(framealpha=1, frameon=True);

<matplotlib.figure.Figure at 0x21e8e5d6da0>

27.将图例分不同的区域展示

In [ ]

  1. fig, ax = plt.subplots()
  2. lines = []
  3. styles = ['-', '--', '-.', ':']
  4. x = np.linspace(0, 10, 1000)
  5. for i in range(4):
  6. lines += ax.plot(x, np.sin(x - i * np.pi / 2),styles[i], color='black')
  7. ax.axis('equal')
(-0.5, 10.5, -1.1, 1.1)

<matplotlib.figure.Figure at 0x21e8d0c6048>

In [ ]

  1. # 设置第一组标签
  2. ax.legend(lines[:2], ['line A', 'line B'],
  3. loc='upper right', frameon=False)
  4. # 创建第二组标签
  5. from matplotlib.legend import Legend
  6. leg = Legend(ax, lines[2:], ['line C', 'line D'],
  7. loc='lower right', frameon=False)
  8. ax.add_artist(leg);

五、自定义色阶

28.展示色阶

In [ ]

  1. x = np.linspace(0, 10, 1000)
  2. I = np.sin(x) * np.cos(x[:, np.newaxis])
  3. plt.imshow(I)
  4. plt.colorbar();

<matplotlib.figure.Figure at 0x21e8d1cc9b0>

29.改变配色为'gray'

In [ ]

plt.imshow(I, cmap='gray');

<matplotlib.figure.Figure at 0x21e8d34a208>

30.将色阶分成6个离散值显示

In [ ]

  1. plt.imshow(I, cmap=plt.cm.get_cmap('Blues', 6))
  2. plt.colorbar()
  3. plt.clim(-1, 1);

<matplotlib.figure.Figure at 0x21e8e533160>

六、多子图

31.在一个1010的画布中,(0.65,0.65)的位置创建一个0.20.2的子图

In [ ]

  1. ax1 = plt.axes()
  2. ax2 = plt.axes([0.65, 0.65, 0.2, 0.2])

<matplotlib.figure.Figure at 0x21e8d416518>

32.在2个子图中,显示sin(x)和cos(x)的图像

In [ ]

  1. fig = plt.figure()
  2. ax1 = fig.add_axes([0.1, 0.5, 0.8, 0.4], ylim=(-1.2, 1.2))
  3. ax2 = fig.add_axes([0.1, 0.1, 0.8, 0.4], ylim=(-1.2, 1.2))
  4. x = np.linspace(0, 10)
  5. ax1.plot(np.sin(x));
  6. ax2.plot(np.cos(x));

<matplotlib.figure.Figure at 0x21e8d3cd198>

33.用for创建6个子图,并且在图中标识出对应的子图坐标

In [ ]

  1. for i in range(1, 7):
  2. plt.subplot(2, 3, i)
  3. plt.text(0.5, 0.5, str((2, 3, i)),fontsize=18, ha='center')
  4. # 方法二
  5. # fig = plt.figure()
  6. # fig.subplots_adjust(hspace=0.4, wspace=0.4)
  7. # for i in range(1, 7):
  8. # ax = fig.add_subplot(2, 3, i)
  9. # ax.text(0.5, 0.5, str((2, 3, i)),fontsize=18, ha='center')

<matplotlib.figure.Figure at 0x21e8e4cd240>

34.设置相同行和列共享x,y轴

In [ ]

fig, ax = plt.subplots(2, 3, sharex='col', sharey='row')

<matplotlib.figure.Figure at 0x21e8e4692b0>

35.用[]的方式取出每个子图,并添加子图座标文字

In [ ]

  1. for i in range(2):
  2. for j in range(3):
  3. ax[i, j].text(0.5, 0.5, str((i, j)), fontsize=18, ha='center')
  4. fig

<matplotlib.figure.Figure at 0x21e8e4692b0>

36.组合绘制大小不同的子图,样式如下

Image Name

In [ ]

  1. grid = plt.GridSpec(2, 3, wspace=0.4, hspace=0.3)
  2. plt.subplot(grid[0, 0])
  3. plt.subplot(grid[0, 1:])
  4. plt.subplot(grid[1, :2])
  5. plt.subplot(grid[1, 2]);

<matplotlib.figure.Figure at 0x21e8ee619b0>

37.显示一组二维数据的频度分布,并分别在x,y轴上,显示该维度的数据的频度分布

In [ ]

  1. mean = [0, 0]
  2. cov = [[1, 1], [1, 2]]
  3. x, y = np.random.multivariate_normal(mean, cov, 3000).T
  4. # Set up the axes with gridspec
  5. fig = plt.figure(figsize=(6, 6))
  6. grid = plt.GridSpec(4, 4, hspace=0.2, wspace=0.2)
  7. main_ax = fig.add_subplot(grid[:-1, 1:])
  8. y_hist = fig.add_subplot(grid[:-1, 0], xticklabels=[], sharey=main_ax)
  9. x_hist = fig.add_subplot(grid[-1, 1:], yticklabels=[], sharex=main_ax)
  10. # scatter points on the main axes
  11. main_ax.scatter(x, y,s=3,alpha=0.2)
  12. # histogram on the attached axes
  13. x_hist.hist(x, 40, histtype='stepfilled',
  14. orientation='vertical')
  15. x_hist.invert_yaxis()
  16. y_hist.hist(y, 40, histtype='stepfilled',
  17. orientation='horizontal')
  18. y_hist.invert_xaxis()

<matplotlib.figure.Figure at 0x21e8ee34cf8>

七、三维图像

38.创建一个三维画布

In [ ]

  1. from mpl_toolkits import mplot3d
  2. fig = plt.figure()
  3. ax = plt.axes(projection='3d')

<matplotlib.figure.Figure at 0x21e90543da0>

39.绘制一个三维螺旋线

In [ ]

  1. ax = plt.axes(projection='3d')
  2. # Data for a three-dimensional line
  3. zline = np.linspace(0, 15, 1000)
  4. xline = np.sin(zline)
  5. yline = np.cos(zline)
  6. ax.plot3D(xline, yline, zline);

<matplotlib.figure.Figure at 0x21e8f117d30>

40.绘制一组三维点

In [ ]

  1. ax = plt.axes(projection='3d')
  2. zdata = 15 * np.random.random(100)
  3. xdata = np.sin(zdata) + 0.1 * np.random.randn(100)
  4. ydata = np.cos(zdata) + 0.1 * np.random.randn(100)
  5. ax.scatter3D(xdata, ydata, zdata, c=zdata, cmap='Greens');

<matplotlib.figure.Figure at 0x21e8f1734a8>

八、宝可梦数据集可视化

41.展示前5个宝可梦的Defense,Attack,HP的堆积条形图

In [ ]

  1. import pandas as pd
  2. df = pd.read_csv('Pokemon.csv')

In [ ]

  1. pokemon = df['Name'][:5]
  2. hp = df['HP'][:5]
  3. attack = df['Attack'][:5]
  4. defense = df['Defense'][:5]
  5. ind = [x for x, _ in enumerate(pokemon)]
  6. plt.figure(figsize=(10,10))
  7. plt.bar(ind, defense, width=0.8, label='Defense', color='blue', bottom=attack+hp)
  8. plt.bar(ind, attack, width=0.8, label='Attack', color='gold', bottom=hp)
  9. plt.bar(ind, hp, width=0.8, label='Hp', color='red')
  10. plt.xticks(ind, pokemon)
  11. plt.ylabel("Value")
  12. plt.xlabel("Pokemon")
  13. plt.legend(loc="upper right")
  14. plt.title("5 Pokemon Defense & Attack & Hp")
  15. plt.show()

<matplotlib.figure.Figure at 0x21e8f9e5c18>

42.展示前5个宝可梦的Attack,HP的簇状条形图

In [ ]

  1. N = 5
  2. pokemon_hp = df['HP'][:5]
  3. pokemon_attack = df['Attack'][:5]
  4. ind = np.arange(N)
  5. width = 0.35
  6. plt.bar(ind, pokemon_hp, width, label='HP')
  7. plt.bar(ind + width, pokemon_attack, width,label='Attack')
  8. plt.ylabel('Values')
  9. plt.title('Pokemon Hp & Attack')
  10. plt.xticks(ind + width / 2, (df['Name'][:5]),rotation=45)
  11. plt.legend(loc='best')
  12. plt.show()

<matplotlib.figure.Figure at 0x21e8f9e5278>

43.展示前5个宝可梦的Defense,Attack,HP的堆积图

In [ ]

  1. x = df['Name'][:4]
  2. y1 = df['HP'][:4]
  3. y2 = df['Attack'][:4]
  4. y3 = df['Defense'][:4]
  5. labels = ["HP ", "Attack", "Defense"]
  6. fig, ax = plt.subplots()
  7. ax.stackplot(x, y1, y2, y3)
  8. ax.legend(loc='upper left', labels=labels)
  9. plt.xticks(rotation=90)
  10. plt.show()

<matplotlib.figure.Figure at 0x21e8fcfb4e0>

44.公用x轴,展示前5个宝可梦的Defense,Attack,HP的折线图

In [ ]

  1. x = df['Name'][:5]
  2. y1 = df['HP'][:5]
  3. y2 = df['Attack'][:5]
  4. y3 = df['Defense'][:5]
  5. # Create two subplots sharing y axis
  6. fig, (ax1, ax2,ax3) = plt.subplots(3, sharey=True)
  7. ax1.plot(x, y1, 'ko-')
  8. ax1.set(title='3 subplots', ylabel='HP')
  9. ax2.plot(x, y2, 'r.-')
  10. ax2.set(xlabel='Pokemon', ylabel='Attack')
  11. ax3.plot(x, y3, ':')
  12. ax3.set(xlabel='Pokemon', ylabel='Defense')
  13. plt.show()

<matplotlib.figure.Figure at 0x21e8ee34630>

45.展示前15个宝可梦的Attack,HP的折线图

In [ ]

  1. plt.plot(df['HP'][:15], '-r',label='HP')
  2. plt.plot(df['Attack'][:15], ':g',label='Attack')
  3. plt.legend();

<matplotlib.figure.Figure at 0x21e8f9d68d0>

46.用scatter的x,y,c属性,展示所有宝可梦的Defense,Attack,HP数据

In [ ]

  1. x = df['Attack']
  2. y = df['Defense']
  3. colors = df['HP']
  4. plt.scatter(x, y, c=colors, alpha=0.5)
  5. plt.title('Scatter plot')
  6. plt.xlabel('HP')
  7. plt.ylabel('Attack')
  8. plt.colorbar();

<matplotlib.figure.Figure at 0x21e8fa0f358>

47.展示所有宝可梦的攻击力的分布直方图,bins=10

In [ ]

  1. x = df['Attack']
  2. num_bins = 10
  3. n, bins, patches = plt.hist(x, num_bins, facecolor='blue', alpha=0.5)
  4. plt.title('Histogram')
  5. plt.xlabel('Attack')
  6. plt.ylabel('Value')
  7. plt.show()

<matplotlib.figure.Figure at 0x21e8eee0e80>

48.展示所有宝可梦Type 1的饼图

In [ ]

  1. plt.figure(1, figsize=(8,8))
  2. df['Type 1'].value_counts().plot.pie(autopct="%1.1f%%")
  3. plt.legend()
<matplotlib.legend.Legend at 0x21e8f131c88>

<matplotlib.figure.Figure at 0x21e8f9c7d68>

49.展示所有宝可梦Type 1的柱状图

In [ ]

  1. ax = df['Type 1'].value_counts().plot.bar(figsize = (12,6),fontsize = 14)
  2. ax.set_title("Pokemon Type 1 Count", fontsize = 20)
  3. ax.set_xlabel("Pokemon Type 1", fontsize = 20)
  4. ax.set_ylabel("Value", fontsize = 20)
  5. plt.show()

<matplotlib.figure.Figure at 0x21e8fcf6a58>

50.展示综合评分最高的10只宝可梦的系数间的相关系数矩阵

In [ ]

  1. import seaborn as sns
  2. top_10_pokemon=df.sort_values(by='Total',ascending=False).head(10)
  3. corr=top_10_pokemon.corr()
  4. fig, ax=plt.subplots(figsize=(10, 6))
  5. sns.heatmap(corr,annot=True)
  6. ax.set_ylim(9, 0)
  7. plt.show()

<matplotlib.figure.Figure at 0x21e8fc14710>
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/612775
推荐阅读
相关标签
  

闽ICP备14008679号