pyplot极坐标图的绘制(北理大嵩天MOOC课程笔记)

例:(面向对象方式绘制极坐标)

import numpy as np
import matplotlib.pyplot as plt
# Fixing random state for reproducibility
np.random.seed(0)
# Compute pie slices
N = 20
theta = np.linspace(0.0, 2 * np.pi, N, endpoint=False)
radii = 10 * np.random.rand(N)
width = np.pi / 4 * np.random.rand(N)

ax = plt.subplot(111, projection='polar')
bars = ax.bar(theta, radii, width=width, bottom=0.0)
# Use custom colors and opacity
for r, bar in zip(radii, bars):
    bar.set_facecolor(plt.cm.viridis(r / 10.))
    bar.set_alpha(0.5)
plt.show()
  • 官方文档:

matplotlib.pyplot.bar

  • matplotlib.pyplot.bar(x, height, width=0.8, bottom=None, *, align='center', data=None, **kwargs)

  • Make a bar plot.

  • The bars are positioned at x with the given alignment. Their dimensions are given by width and height. The vertical baseline is bottom (default 0).(
    在给定的对齐方式下,条形图定位在x处。它们的尺寸是由宽度和高度确定的。垂直基线为底部(默认为0)。)

  • Each of x, height, width, and bottom may either be a scalar applying to all bars, or it may be a sequence of length N providing a separate value for each bar.(
    x、高度、宽度和底部中的每一个都可以是应用于所有条形的标量,也可以是长度N的序列,为每个条形提供一个单独的值。)

Parameters:

  • x : sequence of scalars

    • The x coordinates of the bars. See also align for the alignment of the bars to the coordinates.(条形的x坐标。有关条形图与坐标的对齐方式,请参见对齐。)
  • height : scalar or sequence of scalars

    • The height(s) of the bars.
  • width : scalar or array-like, optional

    • The width(s) of the bars (default: 0.8).
  • bottom : scalar or array-like, optional

    The y coordinate(s) of the bars bases (default: 0).

  • align : {'center', 'edge'}, optional, default: 'center'

    • Alignment of the bars to the x coordinates:

    • 'center': Center the base on the x positions.

    • 'edge': Align the left edges of the bars with the x positions.

    • To align the bars on the right edge pass a negative width and align='edge'.

Returns:

  • container : BarContainer

    • Container with all the bars and optionally errorbars.(包含所有条形和可选错误栏的容器。)

Other Parameters:

  • color : scalar or array-like, optional

    • The colors of the bar faces.
  • edgecolor : scalar or array-like, optional

    • The colors of the bar edges.
  • linewidth : scalar or array-like, optional

    • Width of the bar edge(s). If 0, don't draw edges.
  • tick_label : string or array-like, optional

    • The tick labels of the bars. Default: None (Use default numeric labels.)
  • xerr, yerr : scalar or array-like of shape(N,) or shape(2,N), optional

    • If not None, add horizontal / vertical errorbars to the bar tips. The values are +/- sizes relative to the data:

      • scalar: symmetric +/- values for all bars

      • shape(N,): symmetric +/- values for each bar

      • shape(2,N): Separate - and + values for each bar. First row
        contains the lower errors, the second row contains the upper errors.(第一行包含较低的错误,第二行包含较高的错误。)

      • None: No errorbar. (Default)

      • See Different ways of specifying error bars for an example on the usage of xerr and yerr.(有关使用xerr和yerr的示例,请参阅指定错误栏的不同方法。)

  • ecolor : scalar or array-like, optional, default: 'black'

    • The line color of the errorbars.
  • capsize : scalar, optional

    • The length of the error bar caps in points. Default: None, which will take the value from rcParams["errorbar.capsize"].
  • error_kw : dict, optional

    • Dictionary of kwargs to be passed to the errorbar method. Values of ecolor or capsize defined here take precedence over the independent kwargs.(要传递给errorbar方法的kwargs字典。此处定义的ecolor或capsize的值优先于独立的kwargs。)
  • log : bool, optional, default: False

    • If True, set the y-axis to be log scale.
  • orientation : {'vertical', 'horizontal'}, optional

    • This is for internal use only. Please use barh for horizontal bar plots. Default: 'vertical'.(这仅供内部使用。请使用barh作为水平条形图。默认值:'vertical'。)
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 211,948评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,371评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,490评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,521评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,627评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,842评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,997评论 3 408
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,741评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,203评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,534评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,673评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,339评论 4 330
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,955评论 3 313
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,770评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,000评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,394评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,562评论 2 349

推荐阅读更多精彩内容