数据处理matplotlab学习笔记

from matplotlib import pyplot as plt

准备数据

x = range(2,26,2)
y = [15,13,14.5,17,20,25,26,26,27,22,18,15]
x1 = [1,2,3]
y1 = [4,5,6]

# 设置图片大小
plt.figure(figsize=(20,8),dpi=80)  # dpi为每英寸上点的个数,清晰度

# 绘图
# plt.plot(x1, y1)
plt.plot(x, y)

# 设置x轴的刻度
plt.xticks(x)
# 设置y轴刻度
plt.yticks(range(min(y), max(y) + 1))

# 保存
plt.savefig('tt.png')

# 展示图片
plt.show()

在这里插入图片描述

fig = plt.figure(figsize=(20, 8), dpi=80)
_xtick_range = [i/2 for i in range(4, 49)]
plt.xticks(_xtick_range[::3])

plt.yticks(range(min(y), max(y)+1))

plt.plot(x,y)
plt.savefig('sig_save.png')
plt.show()

在这里插入图片描述

from random import randint
from matplotlib import font_manager
x = range(120)
print(x)
y = [randint(17, 35) for i in range(120)]
print(y)
range(0, 120)
[30, 18, 33, 32, 25, 20, 35, 34, 29, 18, 35, 25, 27, 28, 32, 28, 28, 20, 27, 33, 28, 30, 28, 21, 28, 32, 31, 29, 26, 29, 26, 21, 27, 35, 35, 31, 35, 27, 33, 26, 19, 25, 19, 19, 24, 35, 17, 22, 34, 27, 24, 23, 28, 30, 29, 24, 20, 29, 22, 34, 23, 22, 34, 24, 33, 23, 22, 29, 31, 32, 30, 31, 31, 35, 23, 19, 29, 20, 18, 18, 17, 21, 19, 31, 24, 22, 19, 24, 27, 35, 25, 30, 31, 35, 25, 29, 25, 26, 17, 33, 25, 30, 22, 25, 25, 23, 35, 27, 27, 27, 26, 23, 28, 20, 30, 34, 34, 29, 35, 26]
my_font = font_manager.FontProperties(fname=r'C:\Windows\Fonts\msyhl.ttc')  # 使用电脑中的字体  进入C盘输入 Fonts 
plt.plot(x, y, color='#007979')  # color修改颜色
plt.title('10点到12点每分钟气温变化情况',fontproperties=my_font, fontsize=15)
plt.show
<function matplotlib.pyplot.show(close=None, block=None)>

在这里插入图片描述

_x_ticks = ['10: {}分'.format(i) for i in range(60)]
_x_ticks += ['11: {}分'.format(i) for i in range(60)]
_x_ticks
['10: 0分',
 '10: 1分',
 '10: 2分',
 '10: 3分',
 '10: 4分',
 '10: 5分',
 '10: 6分',
 '10: 7分',
 '10: 8分',
 '10: 9分',
 '10: 10分',
 '10: 11分',
 '10: 12分',
 '10: 13分',
 '10: 14分',
 '10: 15分',
 '10: 16分',
 '10: 17分',
 '10: 18分',
 '10: 19分',
 '10: 20分',
 '10: 21分',
 '10: 22分',
 '10: 23分',
 '10: 24分',
 '10: 25分',
 '10: 26分',
 '10: 27分',
 '10: 28分',
 '10: 29分',
 '10: 30分',
 '10: 31分',
 '10: 32分',
 '10: 33分',
 '10: 34分',
 '10: 35分',
 '10: 36分',
 '10: 37分',
 '10: 38分',
 '10: 39分',
 '10: 40分',
 '10: 41分',
 '10: 42分',
 '10: 43分',
 '10: 44分',
 '10: 45分',
 '10: 46分',
 '10: 47分',
 '10: 48分',
 '10: 49分',
 '10: 50分',
 '10: 51分',
 '10: 52分',
 '10: 53分',
 '10: 54分',
 '10: 55分',
 '10: 56分',
 '10: 57分',
 '10: 58分',
 '10: 59分',
 '11: 0分',
 '11: 1分',
 '11: 2分',
 '11: 3分',
 '11: 4分',
 '11: 5分',
 '11: 6分',
 '11: 7分',
 '11: 8分',
 '11: 9分',
 '11: 10分',
 '11: 11分',
 '11: 12分',
 '11: 13分',
 '11: 14分',
 '11: 15分',
 '11: 16分',
 '11: 17分',
 '11: 18分',
 '11: 19分',
 '11: 20分',
 '11: 21分',
 '11: 22分',
 '11: 23分',
 '11: 24分',
 '11: 25分',
 '11: 26分',
 '11: 27分',
 '11: 28分',
 '11: 29分',
 '11: 30分',
 '11: 31分',
 '11: 32分',
 '11: 33分',
 '11: 34分',
 '11: 35分',
 '11: 36分',
 '11: 37分',
 '11: 38分',
 '11: 39分',
 '11: 40分',
 '11: 41分',
 '11: 42分',
 '11: 43分',
 '11: 44分',
 '11: 45分',
 '11: 46分',
 '11: 47分',
 '11: 48分',
 '11: 49分',
 '11: 50分',
 '11: 51分',
 '11: 52分',
 '11: 53分',
 '11: 54分',
 '11: 55分',
 '11: 56分',
 '11: 57分',
 '11: 58分',
 '11: 59分']
plt.figure(figsize=(40, 15),dpi=80)
plt.plot(x, y, color='#4DFFFF')

plt.rcParams['font.sans-serif'] = ['SimHei']
plt.xticks(list(x)[::3], _x_ticks[::3], fontsize=15, rotation=45)

plt.show()

在这里插入图片描述

plt.figure(figsize=(40, 15),dpi=80)
plt.plot(x, y, color='#4DFFFF')
plt.title('10点到12点每分钟气温变化情况',fontproperties=my_font, fontsize=20)
plt.xticks(list(x)[::3], _x_ticks[::3], fontproperties=my_font, fontsize=15, rotation=45)
plt.xlabel('时间', fontproperties=my_font, fontsize=20)
plt.ylabel('温度℃', fontproperties=my_font, fontsize=20)
plt.savefig('p1.png')
plt.show()

在这里插入图片描述

help(plt.plot)
Help on function plot in module matplotlib.pyplot:

plot(*args, scalex=True, scaley=True, data=None, **kwargs)
    Plot y versus x as lines and/or markers.
    
    Call signatures::
    
        plot([x], y, [fmt], *, data=None, **kwargs)
        plot([x], y, [fmt], [x2], y2, [fmt2], ..., **kwargs)
    
    The coordinates of the points or line nodes are given by *x*, *y*.
    
    The optional parameter *fmt* is a convenient way for defining basic
    formatting like color, marker and linestyle. It's a shortcut string
    notation described in the *Notes* section below.
    
    >>> plot(x, y)        # plot x and y using default line style and color
    >>> plot(x, y, 'bo')  # plot x and y using blue circle markers
    >>> plot(y)           # plot y using x as index array 0..N-1
    >>> plot(y, 'r+')     # ditto, but with red plusses
    
    You can use `.Line2D` properties as keyword arguments for more
    control on the appearance. Line properties and *fmt* can be mixed.
    The following two calls yield identical results:
    
    >>> plot(x, y, 'go--', linewidth=2, markersize=12)
    >>> plot(x, y, color='green', marker='o', linestyle='dashed',
    ...      linewidth=2, markersize=12)
    
    When conflicting with *fmt*, keyword arguments take precedence.
    
    
    **Plotting labelled data**
    
    There's a convenient way for plotting objects with labelled data (i.e.
    data that can be accessed by index ``obj['y']``). Instead of giving
    the data in *x* and *y*, you can provide the object in the *data*
    parameter and just give the labels for *x* and *y*::
    
    >>> plot('xlabel', 'ylabel', data=obj)
    
    All indexable objects are supported. This could e.g. be a `dict`, a
    `pandas.DataFrame` or a structured numpy array.
    
    
    **Plotting multiple sets of data**
    
    There are various ways to plot multiple sets of data.
    
    - The most straight forward way is just to call `plot` multiple times.
      Example:
    
      >>> plot(x1, y1, 'bo')
      >>> plot(x2, y2, 'go')
    
    - Alternatively, if your data is already a 2d array, you can pass it
      directly to *x*, *y*. A separate data set will be drawn for every
      column.
    
      Example: an array ``a`` where the first column represents the *x*
      values and the other columns are the *y* columns::
    
      >>> plot(a[0], a[1:])
    
    - The third way is to specify multiple sets of *[x]*, *y*, *[fmt]*
      groups::
    
      >>> plot(x1, y1, 'g^', x2, y2, 'g-')
    
      In this case, any additional keyword argument applies to all
      datasets. Also this syntax cannot be combined with the *data*
      parameter.
    
    By default, each line is assigned a different style specified by a
    'style cycle'. The *fmt* and line property parameters are only
    necessary if you want explicit deviations from these defaults.
    Alternatively, you can also change the style cycle using
    :rc:`axes.prop_cycle`.
    
    
    Parameters
    ----------
    x, y : array-like or scalar
        The horizontal / vertical coordinates of the data points.
        *x* values are optional and default to ``range(len(y))``.
    
        Commonly, these parameters are 1D arrays.
    
        They can also be scalars, or two-dimensional (in that case, the
        columns represent separate data sets).
    
        These arguments cannot be passed as keywords.
    
    fmt : str, optional
        A format string, e.g. 'ro' for red circles. See the *Notes*
        section for a full description of the format strings.
    
        Format strings are just an abbreviation for quickly setting
        basic line properties. All of these and more can also be
        controlled by keyword arguments.
    
        This argument cannot be passed as keyword.
    
    data : indexable object, optional
        An object with labelled data. If given, provide the label names to
        plot in *x* and *y*.
    
        .. note::
            Technically there's a slight ambiguity in calls where the
            second label is a valid *fmt*. ``plot('n', 'o', data=obj)``
            could be ``plt(x, y)`` or ``plt(y, fmt)``. In such cases,
            the former interpretation is chosen, but a warning is issued.
            You may suppress the warning by adding an empty format string
            ``plot('n', 'o', '', data=obj)``.
    
    Returns
    -------
    list of `.Line2D`
        A list of lines representing the plotted data.
    
    Other Parameters
    ----------------
    scalex, scaley : bool, default: True
        These parameters determine if the view limits are adapted to the
        data limits. The values are passed on to `autoscale_view`.
    
    **kwargs : `.Line2D` properties, optional
        *kwargs* are used to specify properties like a line label (for
        auto legends), linewidth, antialiasing, marker face color.
        Example::
    
        >>> plot([1, 2, 3], [1, 2, 3], 'go-', label='line 1', linewidth=2)
        >>> plot([1, 2, 3], [1, 4, 9], 'rs', label='line 2')
    
        If you make multiple lines with one plot call, the kwargs
        apply to all those lines.
    
        Here is a list of available `.Line2D` properties:
    
        Properties:
        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 or None
        animated: bool
        antialiased or aa: bool
        clip_box: `.Bbox`
        clip_on: bool
        clip_path: Patch or (Path, Transform) or None
        color or c: color
        contains: unknown
        dash_capstyle: {'butt', 'round', 'projecting'}
        dash_joinstyle: {'miter', 'round', 'bevel'}
        dashes: sequence of floats (on/off ink in points) or (None, None)
        data: (2, N) array or two 1D arrays
        drawstyle or ds: {'default', 'steps', 'steps-pre', 'steps-mid', 'steps-post'}, default: 'default'
        figure: `.Figure`
        fillstyle: {'full', 'left', 'right', 'bottom', 'top', 'none'}
        gid: str
        in_layout: bool
        label: object
        linestyle or ls: {'-', '--', '-.', ':', '', (offset, on-off-seq), ...}
        linewidth or lw: float
        marker: marker style string, `~.path.Path` or `~.markers.MarkerStyle`
        markeredgecolor or mec: color
        markeredgewidth or mew: float
        markerfacecolor or mfc: color
        markerfacecoloralt or mfcalt: color
        markersize or ms: float
        markevery: None or int or (int, int) or slice or List[int] or float or (float, float) or List[bool]
        path_effects: `.AbstractPathEffect`
        picker: unknown
        pickradius: float
        rasterized: bool or None
        sketch_params: (scale: float, length: float, randomness: float)
        snap: bool or None
        solid_capstyle: {'butt', 'round', 'projecting'}
        solid_joinstyle: {'miter', 'round', 'bevel'}
        transform: `matplotlib.transforms.Transform`
        url: str
        visible: bool
        xdata: 1D array
        ydata: 1D array
        zorder: float
    
    See Also
    --------
    scatter : XY scatter plot with markers of varying size and/or color (
        sometimes also called bubble chart).
    
    Notes
    -----
    **Format Strings**
    
    A format string consists of a part for color, marker and line::
    
        fmt = '[marker][line][color]'
    
    Each of them is optional. If not provided, the value from the style
    cycle is used. Exception: If ``line`` is given, but no ``marker``,
    the data will be a line without markers.
    
    Other combinations such as ``[color][marker][line]`` are also
    supported, but note that their parsing may be ambiguous.
    
    **Markers**
    
    =============    ===============================
    character        description
    =============    ===============================
    ``'.'``          point marker
    ``','``          pixel marker
    ``'o'``          circle marker
    ``'v'``          triangle_down marker
    ``'^'``          triangle_up marker
    ``'<'``          triangle_left marker
    ``'>'``          triangle_right marker
    ``'1'``          tri_down marker
    ``'2'``          tri_up marker
    ``'3'``          tri_left marker
    ``'4'``          tri_right marker
    ``'s'``          square marker
    ``'p'``          pentagon marker
    ``'*'``          star marker
    ``'h'``          hexagon1 marker
    ``'H'``          hexagon2 marker
    ``'+'``          plus marker
    ``'x'``          x marker
    ``'D'``          diamond marker
    ``'d'``          thin_diamond marker
    ``'|'``          vline marker
    ``'_'``          hline marker
    =============    ===============================
    
    **Line Styles**
    
    =============    ===============================
    character        description
    =============    ===============================
    ``'-'``          solid line style
    ``'--'``         dashed line style
    ``'-.'``         dash-dot line style
    ``':'``          dotted line style
    =============    ===============================
    
    Example format strings::
    
        'b'    # blue markers with default shape
        'or'   # red circles
        '-g'   # green solid line
        '--'   # dashed line with default color
        '^k:'  # black triangle_up markers connected by a dotted line
    
    **Colors**
    
    The supported color abbreviations are the single letter codes
    
    =============    ===============================
    character        color
    =============    ===============================
    ``'b'``          blue
    ``'g'``          green
    ``'r'``          red
    ``'c'``          cyan
    ``'m'``          magenta
    ``'y'``          yellow
    ``'k'``          black
    ``'w'``          white
    =============    ===============================
    
    and the ``'CN'`` colors that index into the default property cycle.
    
    If the color is the only part of the format string, you can
    additionally use any  `matplotlib.colors` spec, e.g. full names
    (``'green'``) or hex strings (``'#008000'``).

点样式

=============    ===============================
character        description
=============    ===============================
``'.'``          point marker
``','``          pixel marker
``'o'``          circle marker
``'v'``          triangle_down marker
``'^'``          triangle_up marker
``'<'``          triangle_left marker
``'>'``          triangle_right marker
``'1'``          tri_down marker
``'2'``          tri_up marker
``'3'``          tri_left marker
``'4'``          tri_right marker
``'s'``          square marker
``'p'``          pentagon marker
``'*'``          star marker
``'h'``          hexagon1 marker
``'H'``          hexagon2 marker
``'+'``          plus marker
``'x'``          x marker
``'D'``          diamond marker
``'d'``          thin_diamond marker
``'|'``          vline marker
``'_'``          hline marker
=============    ===============================
x = range(10)
y = range(10)
plt.plot(x, y, marker='.', markerfacecolor='#984B4B',
        markeredgecolor='#AFAF61', markersize=30)  # markeredgecolor线条颜色    、  markerfacecolor圆点颜色
plt.show()

在这里插入图片描述

plt.plot(x, y, marker='v')
plt.show()

在这里插入图片描述

plt.plot(x, y, linestyle='--')
plt.show()

在这里插入图片描述

plt.plot(x, y, linestyle=':')
plt.show()

在这里插入图片描述

plt.plot(x, y, linestyle=':', color='r')
plt.show()

在这里插入图片描述

plt.plot(x, y, 'r--')
plt.show()

在这里插入图片描述

子图操作

plt.subplot(221)
plt.plot(x, y)

plt.subplot(222)
plt.plot(x, y)

plt.subplot(223)
plt.plot(x, y)

plt.subplot(224)
plt.plot(x, y)
[<matplotlib.lines.Line2D at 0x168cc790520>]

在这里插入图片描述

x = range(10)
y = range(10)
plt.plot(x, y, marker='d', markerfacecolor='#8CEA00',markersize=20)
plt.text(2,2,'abcd')  # 指定位置标记
plt.grid(alpha=0.7)
plt.show()

在这里插入图片描述

x = range(10)
y = range(10)
plt.plot(x, y, marker='d', markerfacecolor='#8CEA00',markersize=20)
plt.annotate('ABCD',xy=(4,4),xytext=(7,4),
            arrowprops=dict(facecolor='red', shrink=0.1,headlength=20,headwidth=10))
plt.grid(alpha=0.7)
plt.show()

在这里插入图片描述

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

小刘私坊

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值