本文简要介绍 python 语言中 matplotlib.pyplot.xticks
的用法。
-
获取或设置 x 轴的当前刻度位置和标签。
不传递任何参数以返回当前值而不修改它们。
- 参数:
- ticks 类似数组,可选
-
xtick 位置列表。传递一个空列表会删除所有 xticks。
- labels 类似数组,可选
-
要放置在给定
ticks
位置的标签。仅当ticks
也被传递时,才能传递此参数。 - minor 布尔值,默认值:假
-
如果是
False
,获取/设置主要刻度/标签;如果是True
,则为次要刻度/标签。 - **kwargs
-
Text
属性可用于控制标签的外观。
- 返回:
- 位置
-
xtick 位置列表。
- 标签
-
xlabel
Text
对象的列表。
注意
不带参数调用此函数(例如
xticks()
)相当于在当前轴上调用get_xticks
和get_xticklabels
的 pyplot。使用参数调用此函数相当于在当前轴上调用set_xticks
和set_xticklabels
的 pyplot。例子
>>> locs, labels = xticks() # Get the current locations and labels. >>> xticks(np.arange(0, 1, step=0.2)) # Set label locations. >>> xticks(np.arange(3), ['Tom', 'Dick', 'Sue']) # Set text labels. >>> xticks([0, 1, 2], ['January', 'February', 'March'], ... rotation=20) # Set text labels and properties. >>> xticks([]) # Disable xticks.
用法
matplotlib.pyplot.xticks(ticks=None, labels=None, *, minor=False, **kwargs)
相关用法
- Python matplotlib xlim用法及代码示例
- Python matplotlib xkcd用法及代码示例
- 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 subplots用法及代码示例
- 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用法及代码示例
- Python matplotlib Axes.semilogy用法及代码示例
- Python matplotlib MovieWriterRegistry.register用法及代码示例
- Python matplotlib PolyQuadMesh.set_hatch用法及代码示例
- Python matplotlib warn_deprecated用法及代码示例
- Python matplotlib Text.set_bbox用法及代码示例
注:本文由纯净天空筛选整理自skytowner.com大神的英文原创作品 matplotlib.pyplot.xticks。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。