matplotlib
Claroja
这个作者很懒,什么都没留下…
展开
-
matplotlib绘制K线图
获得苹果的股票数据(2016/1/4-2017/4/20)如下表: Date Open High Low Close 2016/1/4 102.610001 105.370003 102 105.349998 2016/1/5 105.75 105.849998 102.410004 102.709999 2016/1/6 100.5原创 2017-04-24 11:41:10 · 4925 阅读 · 0 评论 -
Python matplotlib 线图(plt.plot())
pyplot.plot() matplotlib.pyplot很像MATLAB。它的每一个函数都会对现有的图形进行更改:比如建立一个图形(figure),创建画图区域,在画图区域做出线条,使用标签装饰。 如果你传入了一个简单的list或者array,matplotlib会把它当成y值,并自动生成x值。事实上所有序列都会被转换为numpy arrays。import matplotlib.pyp翻译 2017-04-26 13:17:57 · 69717 阅读 · 2 评论 -
Python 绘图 Matplotlib 快速参考手册
http://www.labri.fr/perso/nrougier/teaching/matplotlib/#quick-references 1 作图函数 1.1 默认参数作图import numpy as np#导入numpy库import matplotlib.pyplot as plt#导入matplotlib库X = np.linspace(-np.pi, np.pi, 256,翻译 2017-04-18 13:34:34 · 15326 阅读 · 0 评论 -
matplotlib polar 雷达图
import numpy as npimport matplotlib.pyplot as pltlabels = np.array(['a','b','c','d','e','f']) # 标签dataLenth = 6 # 数据长度data = np.array([1,4,3,6,4,8]) # 数据angles = np.linspace(0, 2*np.pi, dataLenth,原创 2017-11-22 10:33:11 · 4541 阅读 · 1 评论 -
matplotlib axis
http://matplotlib.org/api/_as_gen/matplotlib.pyplot.axis.html#matplotlib.pyplot.axisaxis('off') #关闭坐标轴axis('equal') #changes limits of x or y axis so that equal increments of x and y have the same len原创 2017-11-23 11:36:27 · 5512 阅读 · 1 评论 -
matplotlib text
http://matplotlib.org/api/_as_gen/matplotlib.pyplot.text.html#matplotlib.pyplot.textmatplotlib.pyplot.text(x, y, s, fontdict=None, withdash=False, **kwargs)Parameters:x, y : scalarsdata coordinatess原创 2017-11-23 11:40:44 · 440 阅读 · 0 评论 -
Matplotlib 命令总结
http://matplotlib.org/api/pyplot_summary.html作图命令 方法 描述 类型 angle_spectrum Plot the angle spectrum. plot bar Make a bar plot. plot barbs Plot a 2-D field of barbs....翻译 2017-05-23 17:22:33 · 1334 阅读 · 0 评论 -
pandas.Series.quantile
Series.quantile(q=0.5, interpolation='linear')q : float or array-like, default 0.5 (50% quantile) 0 <= q <= 1, the quantile(s) to computeinterpolation : {‘linear’, ‘lower’, ‘higher’, ‘midpoint’,翻译 2017-11-23 11:55:17 · 2768 阅读 · 0 评论 -
Matplotlib
matplotlib.pyplot.violinplot(dataset, positions=None, vert=True, widths=0.5, showmeans=False, showextrema=True, showmedians=False, points=100, bw_method=None, hold=None, data=None) 参数 类型 描述...翻译 2018-03-06 14:48:57 · 307 阅读 · 0 评论 -
matplotlib.pyplot.subplot
matplotlib.pyplot.subplot(*args, **kwargs)subplot(nrows, ncols, index, **kwargs) 在当前的画板(figure),创建和返回一个Axes对象.nrows,ncols两个参数将整个画板均分,index则是每个Axes的索引,按从左到右,从上到下(row-major). 如果nrows,ncols,index都小于1...翻译 2018-03-06 15:07:04 · 377 阅读 · 0 评论 -
matplotlib color 参数
选择合适的颜色翻译 2018-03-06 15:59:37 · 9529 阅读 · 0 评论 -
Matplotlib 三维图像 入门
开始import matplotlib.pyplot as pltfrom mpl_toolkits.mplot3d import Axes3Dfig = plt.figure() # 创建一个画板ax = Axes3D(fig) # 转换为3维图像线图import matplotlib as mplfrom mpl_toolkits.mplot3d import Ax...原创 2018-03-20 10:38:30 · 869 阅读 · 0 评论 -
Matplotlib 三维图像 API
线图(Line plots)Axes3D.plot(xs, ys, *args, **kwargs) 参数 描述 xs,ys 一维数组 zs z value(s), either one for all points or one for each point. zdir Which direction to use as z (‘x’...翻译 2018-03-20 10:56:42 · 490 阅读 · 0 评论 -
plt.grid
https://matplotlib.org/api/_as_gen/matplotlib.pyplot.grid.html#matplotlib.pyplot.gridplt.grid(True) # 显示背景的网格线 plt.grid(False) # 关闭背景的网格线 ax.grid(color=’r’, linestyle=’-‘, linewidth=2) # 设置背景网格...原创 2018-05-04 15:12:42 · 10691 阅读 · 0 评论 -
箱图
参数 描述 x : Array or a sequence of vectors. 输入的数据 notch : bool, optional (False) If True, will produce a notched box plot. Otherwise, a rectangular boxplot is produced. The notches r...原创 2018-05-04 17:03:15 · 546 阅读 · 0 评论 -
matplotlib.pyplot.scatter
https://matplotlib.org/api/_as_gen/matplotlib.pyplot.scatter.html#matplotlib.pyplot.scattermatplotlib.pyplot.scatter(x, y, s=None, c=None, marker=None, cmap=None, norm=None, vmin=None, vmax=None, ...翻译 2018-05-07 13:55:40 · 412 阅读 · 0 评论 -
matplotlib.lines.Line2D
属性 描述 agg_filter a filter function, which takes a (m, n, 3) float array and a dpi value, and returns a (m, n, 3) array alpha float (0.0 transparent through 1.0 opaque) animated...翻译 2018-08-23 13:35:18 · 4777 阅读 · 0 评论 -
class matplotlib.markers.MarkerStyle(marker=None, fillstyle=None)
https://matplotlib.org/api/_as_gen/matplotlib.markers.MarkerStyle.html#matplotlib.markers.MarkerStylemarkers = {‘.’: ‘point’, ‘,’: ‘pixel’, ‘o’: ‘circle’, ‘v’: ‘triangle_down’, ‘^’: ‘triangle_up’, ‘...翻译 2018-08-24 13:44:11 · 1484 阅读 · 0 评论 -
plt.fill()
做面积图matplotlib.pyplot.fill(*args, **kwargs)ax.fill(x, y)更多的参数可以参考补丁对象 matplotlib.patches.Polygon另外还有fill_between()可以参考翻译 2017-08-25 14:01:54 · 4989 阅读 · 0 评论 -
matplotlib.patches.Polygon
多边形补丁,在做面积图的时候使用 class matplotlib.patches.Polygon(xy, closed=True, **kwargs) 属性 说明 agg_filter unknown alpha 浮点型,透明度 animated [True | False] antialiased or aa [True | False] or None翻译 2017-08-25 13:56:26 · 5855 阅读 · 0 评论 -
matplotlib subplot 子图
通过GridSpec来定制Subplot的坐标 GridSpec指定子图所放置的几何网格。 SubplotSpec在GridSpec中指定子图(subplot)的位置。 subplot2grid类似于“pyplot.subplot”,但是它从0开始索引ax = plt.subplot2grid((2,2),(0, 0))ax = plt.subplot(2,2,1)以上两行的子图(subpl翻译 2017-04-27 10:53:54 · 82816 阅读 · 1 评论 -
matplotlib Artist 教程
1 总括1.1 简介在matplotlib API中有三个图层:matplotlib.backend_bases.FigureCanvas(画板)、matplotlib.backend_bases.Renderer(渲染)、matplotlib.artist.Artist(如何渲染)。我们大部分的时间都是处理Artists. 有两种类型的Artists:基础数据(primitives)代表了标准的翻译 2017-04-28 11:15:34 · 4070 阅读 · 0 评论 -
matplotlib text 文字处理
1.4.处理文字 text()命令可以在任意的位置添加文字,xlabel(),ylabel(),title()分别是添加x轴,y轴标签和标题。import numpy as npimport matplotlib.pyplot as plt# Fixing random state for reproducibilitynp.random.seed(19680801)mu, sigma =翻译 2017-04-28 11:52:06 · 29790 阅读 · 0 评论 -
matplotlib scale 刻度
1.5. 对数或者其他非线性坐标轴 使用plt.xscal()来改变坐标轴的刻度import numpy as npimport matplotlib.pyplot as pltfrom matplotlib.ticker import NullFormatter # useful for `logit` scale# Fixing random state for reproducibil翻译 2017-04-28 11:55:03 · 10924 阅读 · 0 评论 -
matplotlib.pyplot.hist(柱状图)
matplotlib.pyplot.hist(x, bins=None, range=None, normed=False, weights=None, cumulative=False, bottom=None, histtype=’bar’, align=’mid’, orientation=’vertical’, rwidth=None, log=False, color=None, lab翻译 2017-06-08 09:46:27 · 26531 阅读 · 0 评论 -
matplotlib.pyplot.savefig(*args, **kwargs)保存图片$close()关闭图片
savefig(fname, dpi=None, facecolor=’w’, edgecolor=’w’, orientation=’portrait’, papertype=None, format=None, transparent=False, bbox_inches=None, pad_inches=0.1, frameon=None)翻译 2017-06-08 09:54:12 · 12975 阅读 · 0 评论 -
matplotlib.pyplot.bar()条形图
matplotlib.pyplot.bar(left, height, width=0.8, bottom=None, hold=None, data=None, **kwargs)参数left : sequence of scalarsheight : sequence of scalarswidth : scalar or array-like, optionalbottom : sca翻译 2017-06-08 13:10:40 · 9518 阅读 · 0 评论 -
Matplolib subplot 子图控制
subplots_adjust子图调节matplotlib.pyplot.subplots_adjust(*args, **kwargs)subplots_adjust(left=None, bottom=None, right=None, top=None, wspace=None, hspace=None)left = 0.125 # 子图(subplot)翻译 2017-06-29 13:33:42 · 7499 阅读 · 1 评论 -
matplotlib.text.Text
http://matplotlib.org/api/text_api.html#matplotlib.text.Text类xticks/yticks等都继承与text类class matplotlib.text.Text(x=0, y=0, text='', color=None, verticalalignment='baseline', horizontalalignment='left', m翻译 2017-06-08 14:12:01 · 3461 阅读 · 0 评论 -
matplotlib.pyplot.figure
matplotlib.pyplot.figure(num=None, figsize=None, dpi=None, facecolor=None, edgecolor=None, frameon=True, FigureClass=参数 参数 描述 num : integer or string, optional, default: none 创建画板,并命名id,如果id存在,则翻译 2017-06-29 14:01:18 · 652 阅读 · 0 评论 -
Matplotlib 中文字体设置
查看matplotlib可用字体from matplotlib.font_manager import FontManager fonts = set(f.name for f in FontManager().ttflist) print ('可用字体:') for f in sorted(fonts): print('\t' + f) 可用字体: ...原创 2017-06-26 16:19:56 · 2334 阅读 · 0 评论 -
matplotlib.pyplot.pie()饼图
matplotlib.pyplot.pie(x, explode=None, labels=None, colors=None, autopct=None, pctdistance=0.6, shadow=False, labeldistance=1.1, startangle=None, radius=None, counterclock=True, wedgeprops=None, textpr翻译 2017-06-08 10:49:59 · 4055 阅读 · 0 评论 -
class matplotlib.figure.Figure
class matplotlib.figure.Figure(figsize=None, dpi=None, facecolor=None, edgecolor=None, linewidth=0.0, frameon=None, subplotpars=None, tight_layout=None) Bases: matplotlib.artist.Artist 属性 描述 patc翻译 2017-08-21 13:39:08 · 793 阅读 · 0 评论 -
matplotlib 颜色板
颜色设置(color)plot(color = “”)翻译 2017-08-21 13:43:38 · 5486 阅读 · 0 评论 -
matplotlib marker 设置
点号设置(marker)如果不指定linstyle则默认为直线。 plot(marker = “”) marker description . point , pixel o circle v triangle_down ^ triangle_up < triangle_left > triangle_right 1 tri_d翻译 2017-08-21 13:45:43 · 19995 阅读 · 0 评论 -
Matplotlib Line2D设置
linestyle、marker、color的综合设置可以使用综合的来设置Line2D,比如”b-“代表了蓝色的实线,下面给出了综合设置可选的参数 character description ‘-‘ solid line style ‘- -‘ dashed line style ‘-.’ dash-dot line style ‘...原创 2017-05-24 13:22:59 · 8277 阅读 · 0 评论 -
matplotlib xticks yticks
在matplotlib中ticks表示的是刻度,而刻度有两层意思,一个是刻标(locs),一个是刻度标签(tick labels)。在作图时,x轴y轴都是连续的,所以刻标可以随意指定,就是在连续变量上找寻位置,而刻度标签则可以对应替换xticks()返回了两个对象,一个是刻标(locs),另一个是刻度标签locs, labels = xticks()# 显示x轴的刻标xticks(...翻译 2017-08-21 16:41:18 · 28814 阅读 · 0 评论 -
pyplot.annatate
pyplot.annatate参考文献: https://blog.csdn.net/u013457382/article/details/50956459原创 2018-08-24 14:28:44 · 279 阅读 · 0 评论