本文简要介绍 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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。