本文简要介绍 python 语言中 matplotlib.pyplot.semilogx
的用法。
-
在 x 轴上绘制对数缩放图。
调用签名:
semilogx([x], y, [fmt], data=None, **kwargs) semilogx([x], y, [fmt], [x2], y2, [fmt2], ..., **kwargs)
这只是
plot
的一个薄包装,它另外将 x 轴更改为对数缩放。绘图的所有概念和参数也可以在这里使用。附加参数
base
、subs
和nonpositive
控制 x 轴属性。它们只是被转发到Axes.set_xscale
。- 参数:
- base 浮点数,默认值:10
-
x 对数的底。
- subs 类似数组,可选
-
次要 xticks 的位置。如果
None
,则会根据图中的十年数自动选择合理的位置。有关详细信息,请参阅Axes.set_xscale
。 - nonpositive {'mask', 'clip'},默认:'clip'
-
x 中的非正值可以被屏蔽为无效,或被剪裁为非常小的正数。
- **kwargs
-
plot
支持的所有参数。
- 返回:
-
Line2D
列表 -
表示绘制数据的对象。
-
用法
matplotlib.pyplot.semilogx(*args, **kwargs)
相关用法
- Python matplotlib semilogy用法及代码示例
- Python matplotlib select_matching_signature用法及代码示例
- Python matplotlib subplots用法及代码示例
- Python matplotlib silent_list用法及代码示例
- Python matplotlib subplot2grid用法及代码示例
- Python matplotlib step用法及代码示例
- Python matplotlib subplot用法及代码示例
- Python matplotlib savefig用法及代码示例
- Python matplotlib axvspan用法及代码示例
- Python matplotlib Axes.get_legend_handles_labels用法及代码示例
- Python matplotlib AbstractMovieWriter用法及代码示例
- Python matplotlib triplot用法及代码示例
- Python matplotlib StarPolygonCollection.set_hatch用法及代码示例
- Python matplotlib Axes.hist用法及代码示例
- Python matplotlib boxplot用法及代码示例
- Python matplotlib InsetPosition用法及代码示例
- Python matplotlib ToolManager.toolmanager_disconnect用法及代码示例
- Python matplotlib Figure.set_size_inches用法及代码示例
- Python matplotlib figlegend用法及代码示例
- Python matplotlib Axes.step用法及代码示例
- Python matplotlib Axes.contour用法及代码示例
- Python matplotlib LassoSelector用法及代码示例
- Python matplotlib BrokenBarHCollection.set_hatch用法及代码示例
- Python matplotlib Axes.plot用法及代码示例
- Python matplotlib Axes.semilogx用法及代码示例
注:本文由纯净天空筛选整理自skytowner.com大神的英文原创作品 matplotlib.pyplot.semilogx。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。