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