本文簡要介紹 python 語言中 matplotlib.axes.Axes.semilogy
的用法。
-
在 y 軸上繪製對數縮放圖。
調用簽名:
semilogy([x], y, [fmt], data=None, **kwargs) semilogy([x], y, [fmt], [x2], y2, [fmt2], ..., **kwargs)
這隻是
plot
的一個薄包裝,它另外將 y 軸更改為對數縮放。繪圖的所有概念和參數也可以在這裏使用。附加參數
base
、subs
和nonpositive
控製 y 軸屬性。它們隻是被轉發到Axes.set_yscale
。- 參數:
- base 浮點數,默認值:10
-
y 對數的底。
- subs 類似數組,可選
-
次要標記的位置。如果
None
,則會根據圖中的十年數自動選擇合理的位置。有關詳細信息,請參閱Axes.set_yscale
。 - nonpositive {'mask', 'clip'},默認:'clip'
-
y 中的非正值可以被屏蔽為無效,或被剪裁為非常小的正數。
- **kwargs
-
plot
支持的所有參數。
- 返回:
-
Line2D
列表 -
表示繪製數據的對象。
-
用法
Axes.semilogy(*args, **kwargs)
相關用法
- Python matplotlib Axes.semilogx用法及代碼示例
- Python matplotlib Axes.set_prop_cycle用法及代碼示例
- Python matplotlib Axes.set_ylim用法及代碼示例
- Python matplotlib Axes.set_xlim用法及代碼示例
- Python matplotlib Axes.step用法及代碼示例
- Python matplotlib Axes.get_legend_handles_labels用法及代碼示例
- Python matplotlib Axes.hist用法及代碼示例
- Python matplotlib Axes.contour用法及代碼示例
- Python matplotlib Axes.plot用法及代碼示例
- Python matplotlib Axes.inset_axes用法及代碼示例
- Python matplotlib Axes.axis用法及代碼示例
- Python matplotlib Axes.barbs用法及代碼示例
- Python matplotlib Axes.tripcolor用法及代碼示例
- Python matplotlib Axes.axline用法及代碼示例
- Python matplotlib Axes.tick_params用法及代碼示例
- Python matplotlib Axes.axvspan用法及代碼示例
- Python matplotlib Axes.contourf用法及代碼示例
- Python matplotlib Axes.tricontourf用法及代碼示例
- Python matplotlib Axes.locator_params用法及代碼示例
- Python matplotlib Axes.loglog用法及代碼示例
- Python matplotlib Axes.text用法及代碼示例
- Python matplotlib Axes.boxplot用法及代碼示例
- Python matplotlib Axes.triplot用法及代碼示例
- Python matplotlib Axes.tricontour用法及代碼示例
- Python matplotlib Axes.arrow用法及代碼示例
注:本文由純淨天空篩選整理自skytowner.com大神的英文原創作品 matplotlib.axes.Axes.semilogy。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。