matplotlib
MTandHJ
这个作者很懒,什么都没留下…
展开
-
matplotlib 入门之Usage Guide
文章目录Usage Guideplotting函数的输入matplotlib, pyplot, pylab, 三者的联系Coding styleBackends 后端matplotlib教程学习笔记Usage Guideimport matplotlib.pyploy as pltimport numpy as npFigure: Axes, title, figure lege...翻译 2019-03-02 15:35:25 · 244 阅读 · 0 评论 -
matplotlib 高阶之Transformations Tutorial
文章目录Data coordinatesAxes coordinatesBlended transformations 混合坐标系统plotting in physical units使用offset transforms 创建阴影效果函数链接之前在legend的使用中,便已经提及了transforms,用来转换参考系,一般情况下,我们不会用到这个,但是还是了解一下比较好坐标转换对象...翻译 2019-05-31 21:57:35 · 711 阅读 · 0 评论 -
matplotlib 高阶之patheffect (阴影,强调)
文章目录添加阴影使Artist变得突出更多效果我们可以通过path来修饰Artist, 通过set_path_effectsimport matplotlib.pyplot as pltimport matplotlib.patheffects as path_effectsfig = plt.figure(figsize=(5, 1.5))ax = fig.add_axes([0, ...翻译 2019-05-30 19:55:05 · 2241 阅读 · 0 评论 -
matplotlib 进阶之Tight Layout guide
文章目录简单的例子Use with GridSpecLegend and AnnotationsUse with AxesGrid1Colorbar函数链接matplotlib教程学习笔记如何使用tight_layout?tight_layout作用于ticklabels, axis, labels, titles等Artist简单的例子import matplotlib.pyplo...翻译 2019-05-17 20:58:57 · 3758 阅读 · 1 评论 -
matplotlib 进阶之Constrained Layout Guide
文章目录简单的例子ColorbarsSuptitleLegendsPadding and Spacingspacing with colobarsrcParamsUse with GridSpecManually setting axes positionsManually turning off constrained_layoutLimitaionsIncompatible functions...翻译 2019-05-16 21:45:41 · 4926 阅读 · 0 评论 -
matplotlib 进阶之Legend guide
文章目录matplotlib.pyplot.legend方法1自动检测方法2为现有的Artist添加方3显示添加图例控制图例的输入为一类Artist设置图例Legend 的位置 loc, bbox_to_anchor一个具体的例子同一个Axes多个legend函数链接import numpy as npimport matplotlib.pyplot as pltmatplotlib.py...翻译 2019-05-11 22:46:38 · 628 阅读 · 0 评论 -
matplotlib 进阶之Customizing Figure Layouts Using GridSpec and Other Functions
文章目录对Gridspec的一些精细的调整利用SubplotSpecfig.add_grdispec; gs.subgridspec一个利用Subplotspec的复杂例子函数链接matplotlib教程学习笔记如何创建网格形式的axes的组合呢:subplots()GridSpecSubplotSpecsubplot2grid()import matplotlibimp...翻译 2019-05-15 21:34:01 · 237 阅读 · 0 评论 -
matplotlib 进阶之origin and extent in imshow
文章目录显示的extentExplicit extent and axes limitsmatplotlib教程学习笔记import numpy as npimport matplotlib.pyplot as pltfrom matplotlib.gridspec import GridSpecdef index_to_coordinate(index, extent, ori...翻译 2019-05-19 21:26:49 · 1774 阅读 · 0 评论 -
matplotlb 进阶之Styling with cycler
文章目录cyclermatplotlib教程学习笔记cycler在教程开始之前,我们需要了解cycler模块from __future__ import print_functionfrom cycler import cyclercolor_cycler = cycler(color=["r", "g", "b"]) #通过cycler 可以创建cycler对象color...翻译 2019-05-14 18:32:45 · 440 阅读 · 0 评论 -
matplotlib 进阶之Artist tutorial(如何操作Atrist和定制)
文章目录基本plt.figure()fig.add_axes()ax.linesset_xlabel一个完整的例子定制你的对象obj.set(alpha=0.5, zorder=2), obj.set_alpha(0.5)matplotlib.artist.getp(), plt.getp()容器函数链接matplotlib教程学习笔记基本有俩种Artist:primitives(图形元...翻译 2019-05-09 17:50:43 · 302 阅读 · 0 评论 -
matplotlib 入门之Sample plots in Matplotlib
文章目录Line PlotOne figure, a set of subplotsImage 展示图片展示二元正态分布A sample imageInterpolating images 插值图像?Clip pathContouring and Pseudocolor 轮廓与伪彩色Histograms hist()PathsThree-dimensional plottingStreampl...翻译 2019-03-07 19:37:19 · 995 阅读 · 0 评论 -
matplotlib 入门之The Lifecycle of a plot
matplotlib教程学习笔记这篇教程旨在展示如何开始、完善、结束可视化过程。我们将以一些原始的数据为开端,以保存可视化的图片为结尾。在其过程中,我们会展示一些整洁的特性和实用的练习。Notefigure对象是图片的最终体,可能包含1个或多个Axes对象Axes对象代表独立的plot,请不要把它和axis(坐标轴)混淆数据# sphinx_gallery_thumbnail...翻译 2019-03-09 17:48:41 · 156 阅读 · 0 评论 -
matplotlib 入门之Pyplot tutorial
文章目录pyplot 介绍修饰你的图案格式字符串 [color][marker][line]ColorsMarkersLine Styles利用关键字作图(大概是数据映射到属性吧)传入类别控制线的属性Line2D的属性操作多figures和axessubplot(mnk)clf()清空当前figure, cla()情况当前axes.加入TextAnnotating text非线性axesmat...翻译 2019-03-03 16:34:31 · 264 阅读 · 0 评论 -
matplotlib 入门之Image tutorial
文章目录载入图像为ndarray显示图像调取各个维度利用cmp获得像素点的RGB的统计通过clim来限定rgb标度在下方插值,马赛克,虚化matplotlib教程学习笔记import matplotlib.pyplot as pltimport matplotlib.image as mpimgimport numpy as np载入图像为ndarrayimg = mpimg.i...翻译 2019-03-08 16:37:32 · 184 阅读 · 0 评论 -
matplotlib 高阶之path tutorial
文章目录Bezier example用path来画柱状图随便玩玩import matplotlib.pyplot as pltfrom matplotlib.path import Pathimport matplotlib.patches as patchesPath 通过一个(N, 2)的包含(x, y)的点来实例比如,我们想要画一个标准的正方形:verts = [ (0.,...翻译 2019-05-29 21:45:28 · 203 阅读 · 0 评论