Matplotlib
文章平均质量分 76
牵牛花主人
努力不做菜鸟
展开
-
绘制热力图:imshow()--matplotlib
在二维规则栅格上展示数据,展示为图片。输入可以是实际的RGB(A)数据,也可以是2D标量数据,将以伪彩色图像的形式呈现。若要显示灰度图像,请使用参数设置颜色映射。渲染图像所使用的像素数量由Axes尺寸和图形的dpi设置决定。原创 2023-07-16 12:35:03 · 1693 阅读 · 0 评论 -
subplots_adjust()函数--matplotlib
调整子区的展现效果。原创 2022-10-28 21:39:14 · 4005 阅读 · 0 评论 -
suptitle()--matplotlib
给画布添加标题原创 2022-10-26 21:09:18 · 2872 阅读 · 0 评论 -
subplots()--matplotlib
生成画布与若干子图--subplots()函数原创 2022-10-25 22:36:25 · 2231 阅读 · 0 评论 -
subplot2grid()--matplotlib
subplot2gird()函数--matplotlib跨区绘制图形原创 2022-10-24 17:52:10 · 938 阅读 · 0 评论 -
margins函数--Matplotlib
改变坐标轴与绘图区域axes的轴(spines)之间的留白大小原创 2022-10-23 22:40:17 · 2167 阅读 · 0 评论 -
arrow()--添加箭头--matplotlib
arrow()--添加箭头--matplotlib原创 2022-10-16 17:39:08 · 4523 阅读 · 0 评论 -
plot()函数--绘制折线图--matplotlib
plot()函数--绘制折线图--matplotlib原创 2022-10-14 18:34:52 · 3524 阅读 · 0 评论 -
annotate()函数--matplotlib
annotate()函数--matplotlib原创 2022-10-13 16:51:18 · 2561 阅读 · 0 评论 -
add_axes()--matplotlib
add_axes()函数--matplotlib原创 2022-10-10 18:26:28 · 1503 阅读 · 0 评论 -
tick_params()--matplotlib
tick_params()--matplotlib原创 2022-10-10 14:57:22 · 5701 阅读 · 0 评论 -
add_subplot()--matplotlib
1. 函数功能参考网站:https://matplotlib.org/stable/api/figure_api.html#matplotlib.figure.Figure.add_subplot翻译 2021-12-04 10:44:12 · 14195 阅读 · 0 评论 -
figure函数--Matplotlib
figure函数–Matplotlib函数功能:Create a new figure, or activate an existing figure.创建一个新图形或者激活一个现有图形函数语法:figure(num=None, figsize=None, dpi=None, facecolor=None, edgecolor=None, frameon=True, FigureClass=<class ‘matplotlib.figure.Figure’>, clear=False,翻译 2020-12-06 00:01:47 · 2684 阅读 · 0 评论 -
table函数--Matplotlib
官方文档: table函数翻译 2020-12-04 00:28:52 · 4957 阅读 · 1 评论 -
setp函数--Matplotlib
函数功能:Set a property on an artist object.设置元素属性函数语法:setp(obj, *args, **kwargs)函数参数:obj: 要设置的对象matplotlib supports the use of setp() (“set property”) and getp() to set and get object properties, as well as to do introspection on the object.matplotli翻译 2020-12-01 18:35:10 · 9163 阅读 · 0 评论 -
Matplotlib--legend函数
Matplotlib–legend函数函数功能:Place a legend on the axes.在坐标系中放置图例原创 2020-11-30 10:26:22 · 20006 阅读 · 2 评论 -
subplot()函数--Matplotlib
划分画布的主要函数(第一部分)–subplot函数原创 2020-11-28 16:54:45 · 4115 阅读 · 0 评论 -
boxplot函数--Matplotlib
boxplot函数–Matplotlib函数功能:Make a box and whisker plot.绘制盒须图Make a box and whisker plot for each column of x or each vector in sequence x. The box extends from the lower to upper quartile values of the data, with a line at the median. The whiskers extend翻译 2020-11-07 22:06:31 · 3797 阅读 · 0 评论 -
stem函数--Matplotlib
stem函数–Matplotlib函数功能:Create a stem plot.创建棉棒图A stem plot plots vertical lines at each x location from the baseline to y, and places a marker there.在每个x的位置绘制基准线到y的垂直线,并在y处绘制标记。函数语法:stem([x,] y, linefmt=None, markerfmt=None, basefmt=None,bottom=0, lab翻译 2020-11-02 10:36:56 · 9402 阅读 · 0 评论 -
polar函数--Matplotlib
绘制雷达图polar()函数--matplotlib原创 2020-10-20 22:52:05 · 7816 阅读 · 0 评论 -
堆积图--MatplotLib
绘制堆积柱形图柱形图的基础绘制参见Bar函数柱形图绘制;Barh条形图绘制堆积图是一种组合式的图形,是将若干图形堆叠起来的统计图形使用参数bottombottombottom可以使柱形图的柱子向上平移相应的高度。同理对于堆积柱形图,上面的图形只要向上平移第一个图形每根柱子的高度即可,即参数bottombottombottom=第一个图形的柱高数据# 导入第三方数据库import matplotlib as mplimport matplotlib.pyplot as plt# 字体与负号参数原创 2020-10-16 00:10:01 · 2932 阅读 · 0 评论 -
xticks函数--Matplotlib
xticks函数–Matplotlibyticks使用方法相同**函数功能:**Get or set the current tick locations and labels of the x-axis. Pass no arguments to return the current values without modifying them. &翻译 2020-10-15 22:16:41 · 20486 阅读 · 1 评论 -
pie函数--Matplotlib
matplotlib.pyplot.pie函数功能:Plot a pie chart. 绘制饼图Make a pie chart of array x. The fractional area of each wedge is given by x/sum(x). If sum(x) <翻译 2020-10-11 11:57:36 · 1747 阅读 · 0 评论 -
hist函数--matplotlib
matplotlib.pyplot.hist翻译 2020-10-09 17:34:25 · 10226 阅读 · 2 评论 -
Barh函数--Matplotlib
函数Barh()–用于绘制条形图本节的条形图绘制所用到的参数与上一节的柱形图的参数使用一致,本次不再做详细介绍,需要请查看bar函数链接: bar函数–绘制柱形图Barh函数功能: Make a horizontal bar plot &nb翻译 2020-09-29 23:35:48 · 8188 阅读 · 0 评论 -
Bar函数--Matplotlib
函数Bar()–用于绘制柱状图使用bar绘制柱状图的过程中涉及到中文字体的显示问题使用动态参数配置方法,指定了中文黑体import matplotlib as mplmpl.rcParams['font.sans-serif'] = ['SimHei']换成中文字体之后又会遇到负号无法正常显示的情况,因此增加了第二行配置mpl.rcParams['axes.unicode_minus'] = False先来看下如果没有上面两行参数的情况可以看到中文无法正常显示:增加mpl.rcPa原创 2020-09-29 21:53:12 · 7093 阅读 · 1 评论 -
字体设置相关问题
在第二章绘制简单图形章节,代码实现中有两行代码搞不明白,如下:import matplotlib as mplmpl.rcParams['font.sans-serif'] = ['SimHei']mpl.rcParams['axes.unicode_minus'] = False查阅资料,先将有关知识总结如下:1.字体区分在西方国家罗马字母阵营中,字体分为两大类:Sans Serif 和 Serif ,另外还有等宽字体,所以另外单独出Monospace这一种类。San Serif: 无转载 2020-11-03 21:48:05 · 1048 阅读 · 0 评论 -
text函数--Matplotlib
text函数使用–Matplotlib函数功能: Add text to the axes. Add the text s to the axes at location x, y in data coordinates. 添加注释文本;在坐标(x,y)位置添加文本函数语法: text(x, y, s, fontdict=None, **kwargs)翻译 2020-09-28 21:39:38 · 6435 阅读 · 1 评论 -
axvspan函数--Matplotlib
axvspan函数使用–Matplotlib函数功能、函数语法与参数说明可平移至axhspan函数功能: Add a vertical span (rectangle) across the axes. 在坐标系添加垂直区域(矩形)The rectangle spans from xmin to xmax原创 2020-09-26 23:09:03 · 2826 阅读 · 0 评论 -
axhline函数--Matplotlib
axvline函数使用–Matplotlib该函数用法可平移至axvline上函数功能: Add a horizontal line across the axis. 在轴上添加一条水平线函数语法: axhline(y=0, xmin=0, xmax=1, **kwargs)函数参数:原创 2020-09-26 18:59:45 · 10926 阅读 · 0 评论 -
grid函数--Matplotlib
grid函数使用–Matplotlib原创 2020-09-26 17:08:29 · 7021 阅读 · 4 评论 -
Xlim函数--Matplotlib
xlim函数使用–Matplotlib**函数功能:**Get or set the x limits of the current axes 获取或设置x轴数值显示范围函数语法:left, right = xlim() # return the current xlim 返回当前x轴边界xlim((left, right)) # set the xlim to left, right 设置x轴边界xlim(left, right) # set the xlim原创 2020-09-24 20:36:03 · 10884 阅读 · 1 评论 -
Title函数--Matplotlib
函数语法:Title(label, fontdict=None, loc=None, pad=None, *, y=None, **kwargs)函数功能:Set a title for the axes.设置坐标系标题函数参数:**label:**str ,Text to use for the title 字符串,用于标题文本内容fontdictdict: A dictionary controlling the appearance of the title text, the原创 2020-09-24 18:02:16 · 2437 阅读 · 0 评论 -
xlabel函数--Matplotlib
xlabel函数使用–Matplotlib函数语法:xlabel(xlabel, fontdict=None, labelpad=None, *, loc=None, **kwargs)函数功能:Set the label for the x-axis.设置X轴的标签函数参数:xlabel: str The label text.字符串格式,标签文本内容fontdict: dict, 一个字典用来控制标签的字体样式 labelpad: float, default: NoneS原创 2020-09-24 01:24:15 · 16468 阅读 · 0 评论