step函數(shù)概述
step
函數(shù)用于繪制階梯圖。
根據(jù)源碼可知,step
函數(shù)是對plot
函數(shù)的輕量級封裝,很多概念和用法與plot
函數(shù)非常相似。
def step(self, x, y, *args, where='pre', data=None, **kwargs):
cbook._check_in_list(('pre', 'post', 'mid'), where=where)
kwargs['drawstyle'] = 'steps-' + where
return self.plot(x, y, *args, data=data, **kwargs)
step
函數(shù)簽名:
matplotlib.pyplot.step(x, y, *args, where='pre', data=None, **kwargs)
step
函數(shù)調(diào)用簽名:
step(x, y, [fmt], *, data=None, where='pre', **kwargs)
step(x, y, [fmt], x2, y2, [fmt2], ..., *, where='pre', **kwargs)
其中:
- x:類數(shù)組結(jié)構(gòu),一維x軸坐標序列。一般假設(shè)x軸坐標均勻遞增。必備參數(shù)。
- y:類數(shù)組結(jié)構(gòu),一維y軸坐標序列。必備參數(shù)。
- fmt:格式字符串,與plot函數(shù)的fmt參數(shù)類似??蛇x參數(shù)。官方建議只設(shè)置顏色格式。
- data:可索引數(shù)據(jù),類似于plot函數(shù)。可選參數(shù)。
- **kwargs:類似于plot函數(shù)。
- where :設(shè)置階梯所在位置,取值范圍為{'pre', 'post', 'mid'},默認值為'pre'。
案例:使用step函數(shù)和plot函數(shù)演示不同where參數(shù)的效果
通過案例可知,step
函數(shù)可以認為是plot
函數(shù)繪制階梯圖的一個特例。
import numpy as np
import matplotlib.pyplot as plt
x = np.arange(14)
y = np.sin(x / 2)
plt.figure(figsize=(12,5))
plt.subplot(121)
plt.step(x, y + 2, label='pre (default)')
plt.plot(x, y + 2, 'o--', color='grey', alpha=0.3)
plt.step(x, y + 1, where='mid', label='mid')
plt.plot(x, y + 1, 'o--', color='grey', alpha=0.3)
plt.step(x, y, where='post', label='post')
plt.plot(x, y, 'o--', color='grey', alpha=0.3)
plt.grid(axis='x', color='0.95')
plt.legend(title='Parameter where:')
plt.title('plt.step(where=...)')
plt.subplot(122)
plt.plot(x, y + 2, drawstyle='steps', label='steps (=steps-pre)')
plt.plot(x, y + 2, 'o--', color='grey', alpha=0.3)
plt.plot(x, y + 1, drawstyle='steps-mid', label='steps-mid')
plt.plot(x, y + 1, 'o--', color='grey', alpha=0.3)
plt.plot(x, y, drawstyle='steps-post', label='steps-post')
plt.plot(x, y, 'o--', color='grey', alpha=0.3)
plt.grid(axis='x', color='0.95')
plt.legend(title='Parameter drawstyle:')
plt.title('plt.plot(drawstyle=...)')
plt.show()
到此這篇關(guān)于matplotlib階梯圖的實現(xiàn)(step())的文章就介紹到這了,更多相關(guān)matplotlib 階梯圖內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
您可能感興趣的文章:- python學習之使用Matplotlib畫實時的動態(tài)折線圖的示例代碼
- Matplotlib animation模塊實現(xiàn)動態(tài)圖
- matplotlib bar()實現(xiàn)多組數(shù)據(jù)并列柱狀圖通用簡便創(chuàng)建方法
- matplotlib源碼解析標題實現(xiàn)(窗口標題,標題,子圖標題不同之間的差異)
- matplotlib繪制正余弦曲線圖的實現(xiàn)
- 詳解matplotlib繪圖樣式(style)初探
- matplotlib更改窗口圖標的方法示例
- matplotlib繪制多子圖共享鼠標光標的方法示例
- python使用matplotlib的savefig保存時圖片保存不完整的問題
- matplotlib 畫動態(tài)圖以及plt.ion()和plt.ioff()的使用詳解
- matplotlib制作雷達圖報錯ValueError的實現(xiàn)