本文簡要介紹 python 語言中 matplotlib.rcsetup.cycler
的用法。
-
創建一個非常類似於
cycler.cycler()
的Cycler
對象,但包括輸入驗證。調用簽名:
cycler(cycler) cycler(label=values[, label2=values2[, ...]]) cycler(label, values)
表格 1 複製給定的
Cycler
對象。表格 2 創建了一個
Cycler
,它同時在一個或多個屬性上循環。如果給定多個屬性,它們的值列表必須具有相同的長度。表格 3 為單個屬性創建
Cycler
。這種形式的存在是為了與原始循環儀兼容。不鼓勵使用它以支持 kwarg 形式,即cycler(label=values)
。- 參數:
- cycler 循環器
-
Cycler 的複製構造函數。
- label str
-
屬性鍵。必須是有效的
Artist
屬性。例如,'color' 或 'linestyle'。允許使用別名,例如 'c' 用於 'color' 和 'lw' 用於 'linewidth'。 - values 可迭代的
-
屬性值的有限長度迭代。這些值經過驗證,如果無效,將引發 ValueError。
- 返回:
- 循環器
-
給定屬性的新
Cycler
。
例子
為單個屬性創建循環器:
>>> c = cycler(color=['red', 'green', 'blue'])
創建一個循環器以同時循環多個屬性(例如紅色圓圈、綠色加號、藍色十字):
>>> c = cycler(color=['red', 'green', 'blue'], ... marker=['o', '+', 'x'])
用法
matplotlib.rcsetup.cycler(*args, **kwargs)
相關用法
- Python matplotlib contour用法及代碼示例
- Python matplotlib check_isinstance用法及代碼示例
- Python matplotlib compare_images用法及代碼示例
- Python matplotlib caching_module_getattr用法及代碼示例
- Python matplotlib check_figures_equal用法及代碼示例
- Python matplotlib colorbar用法及代碼示例
- Python matplotlib clim用法及代碼示例
- Python matplotlib check_shape用法及代碼示例
- Python matplotlib classproperty用法及代碼示例
- Python matplotlib color_sequences用法及代碼示例
- Python matplotlib check_in_list用法及代碼示例
- Python matplotlib connect用法及代碼示例
- Python matplotlib check_getitem用法及代碼示例
- Python matplotlib colormaps用法及代碼示例
- Python matplotlib contourf用法及代碼示例
- 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用法及代碼示例
注:本文由純淨天空篩選整理自skytowner.com大神的英文原創作品 matplotlib.rcsetup.cycler。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。