赞
踩
Matplotlib是Python中的一个库,它是数字的-NumPy库的数学扩展。 Figure模块提供了顶层Artist,即Figure,其中包含所有绘图元素。此模块用于控制所有图元的子图和顶层容器的默认间距。
matplotlib.figure.Figure.autofmt_xdate()函数
matplotlib库的autofmt_xdate()方法图形模块用于旋转它们并使其右对齐。
用法: autofmt_xdate(self, bottom=0.2, rotation=30, ha=’right’, which=None)
参数:这接受以下描述的以下参数:
bottom:此参数是subplots_adjust()子图的底部。
rotation:此参数是xtick标签的旋转。
ha:此参数是xticklabels的水平对齐方式。
which:此参数选择要旋转的刻度标签。
返回值:此方法不返回任何值。
以下示例说明了matplotlib.figure中的matplotlib.figure.Figure.autofmt_xdate()函数:
范例1:
# Implementation of matplotlib function
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.dates as mdates
import matplotlib.cbook as cbook
years = mdates.YearLocator()
months = mdates.MonthLocator()
year
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。