当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python Matplotlib.figure.Figure.autofmt_xdate()用法及代码示例


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()   
years_fmt = mdates.DateFormatter('% Y') 
    
with cbook.get_sample_data('goog.npz') as datafile:
    data = np.load(datafile)['price_data'].view(np.recarray) 
        
fig, ax = plt.subplots() 
ax.plot('date', 'adj_close',  
         data = data[:300], 
         color ="green") 
    
ax.xaxis.set_major_locator(years)  
ax.format_ydata = lambda x:'$% 1.2f' % x 
ax.grid(True) 
   
fig.autofmt_xdate() 
   
fig.suptitle('matplotlib.figure.Figure.autofmt_xdate() \ 
function Example\n\n', fontweight ="bold") 
  
plt.show()

输出:

范例2:

# Implementation of matplotlib function 
import datetime 
import matplotlib.pyplot as plt 
from matplotlib.dates import DayLocator, HourLocator, DateFormatter, drange 
import numpy as np 
    
date1 = datetime.datetime(2020, 4, 2) 
date2 = datetime.datetime(2020, 4, 6) 
delta = datetime.timedelta(hours = 6) 
dates = drange(date1, date2, delta) 
    
y = np.arange(len(dates)) 
    
fig, ax = plt.subplots() 
ax.plot_date(dates, y ** 2, 'g') 
    
ax.set_xlim(dates[0], dates[-1]) 
    
ax.xaxis.set_major_locator(DayLocator()) 
ax.xaxis.set_minor_locator(HourLocator(range(0, 25, 6))) 
ax.xaxis.set_major_formatter(DateFormatter('% Y-% m-% d')) 
    
ax.fmt_xdata = DateFormatter('% Y-% m-% d % H:% M:% S') 
fig.autofmt_xdate() 
   
fig.suptitle('matplotlib.figure.Figure.autofmt_xdate() \ 
function Example\n\n', fontweight ="bold") 
  
plt.show()

输出:




相关用法


注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 Matplotlib.figure.Figure.autofmt_xdate() in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。