文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

python必备库Matplotlib怎么使用

2023-06-29 12:18

关注

本篇内容介绍了“python必备库Matplotlib怎么使用”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!

前言:

Matplotlib 通常与 NumPy、Pandas 一起使用,是数据分析中不可或缺的重要工具之一。

Matplotlib 是 Python 中类似 MATLAB 的绘图工具,如果您熟悉 MATLAB,那么可以很快的熟悉它。Matplotlib 提供了一套面向对象绘图的 API,它可以轻松地配合 Python GUI 工具包(比如 PyQt,WxPython、Tkinter)在应用程序中嵌入图形。与此同时,它也支持以脚本的形式在 Python、IPython Shell、Jupyter Notebook 以及 Web 应用的服务器中使用。

官网地址:

https://matplotlib.org/

python必备库Matplotlib怎么使用

可以看看docs

python必备库Matplotlib怎么使用

官网就相当详细了,可以直接参考官网。

1.安装方法

pip安装:

pip3 install matplotlib -i https://pypi.tuna.tsinghua.edu.cn/simple

conda安装:

conda install matplotlib

测试是否成功:

import numpy as np from matplotlib import pyplot as plt  x = np.arange(1,11) y =  2  * x +  5 plt.title("Matplotlib demo") plt.xlabel("x axis caption") plt.ylabel("y axis caption") plt.plot(x,y) plt.show()

成功出现下图就可以动手改造了。

python必备库Matplotlib怎么使用

2.用好官网的例子

最简单的应用-折线图

fig, ax = plt.subplots()  # Create a figure containing a single axes.ax.plot([1, 2, 3, 4], [1, 4, 2, 3]);  # Plot some data on the axes.

python必备库Matplotlib怎么使用

添加注释的方法

fig, ax = plt.subplots(figsize=(5, 2.7))t = np.arange(0.0, 5.0, 0.01)s = np.cos(2 * np.pi * t)line, = ax.plot(t, s, lw=2)ax.annotate('local max', xy=(2, 1), xytext=(3, 1.5),            arrowprops=dict(facecolor='black', shrink=0.05))ax.set_ylim(-2, 2);

python必备库Matplotlib怎么使用

柱状图-Bar Label

import matplotlib.pyplot as pltimport numpy as npN = 5menMeans = (20, 35, 30, 35, -27)womenMeans = (25, 32, 34, 20, -25)menStd = (2, 3, 4, 1, 2)womenStd = (3, 5, 2, 3, 3)ind = np.arange(N)    # the x locations for the groupswidth = 0.35       # the width of the bars: can also be len(x) sequencefig, ax = plt.subplots()p1 = ax.bar(ind, menMeans, width, yerr=menStd, label='Men')p2 = ax.bar(ind, womenMeans, width,            bottom=menMeans, yerr=womenStd, label='Women')ax.axhline(0, color='grey', linewidth=0.8)ax.set_ylabel('Scores')ax.set_title('Scores by group and gender')ax.set_xticks(ind, labels=['G1', 'G2', 'G3', 'G4', 'G5'])ax.legend()# Label with label_type 'center' instead of the default 'edge'ax.bar_label(p1, label_type='center')ax.bar_label(p2, label_type='center')ax.bar_label(p2)plt.show()

正常run会出现下图:

python必备库Matplotlib怎么使用

折线图之CSD

计算两个信号的交叉谱密度Compute the cross spectral density of two signals

import numpy as npimport matplotlib.pyplot as pltfig, (ax1, ax2) = plt.subplots(2, 1)# make a little extra space between the subplotsfig.subplots_adjust(hspace=0.5)dt = 0.01t = np.arange(0, 30, dt)# Fixing random state for reproducibilitynp.random.seed(19680801)nse1 = np.random.randn(len(t))                 # white noise 1nse2 = np.random.randn(len(t))                 # white noise 2r = np.exp(-t / 0.05)cnse1 = np.convolve(nse1, r, mode='same') * dt   # colored noise 1cnse2 = np.convolve(nse2, r, mode='same') * dt   # colored noise 2# two signals with a coherent part and a random parts1 = 0.01 * np.sin(2 * np.pi * 10 * t) + cnse1s2 = 0.01 * np.sin(2 * np.pi * 10 * t) + cnse2ax1.plot(t, s1, t, s2)ax1.set_xlim(0, 5)ax1.set_xlabel('time')ax1.set_ylabel('s1 and s2')ax1.grid(True)cxy, f = ax2.csd(s1, s2, 256, 1. / dt)ax2.set_ylabel('CSD (db)')plt.show()

python必备库Matplotlib怎么使用

“python必备库Matplotlib怎么使用”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注编程网网站,小编将为大家输出更多高质量的实用文章!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯