本文簡要介紹 python 語言中 matplotlib.collections.PathCollection.sticky_edges
的用法。
-
x
和y
用於自動縮放的粘性邊列表。執行自動縮放時,如果數據限製與相應 sticky_edges 列表中的值一致,則不會添加邊距 - 視圖限製 "sticks" 到邊。一個典型的用例是直方圖,人們通常期望直方圖的底部邊 (0) 上沒有邊距。
此外,邊距擴展"bumps" 針對粘性邊並且不能越過它們。例如,如果數據上限為 1.0,則通過簡單邊距應用計算的查看上限為 1.2,但在 1.1 處存在粘性邊,則實際查看上限為 1.1。
該屬性不能分配給;但是,
x
和y
列表可以根據需要在適當的位置進行修改。例子
>>> artist.sticky_edges.x[:] = (xmin, xmax) >>> artist.sticky_edges.y[:] = (ymin, ymax)
用法
property sticky_edges
相關用法
- Python matplotlib PathCollection.set_hatch用法及代碼示例
- Python matplotlib PathCollection.legend_elements用法及代碼示例
- Python matplotlib PatchCollection.sticky_edges用法及代碼示例
- Python matplotlib PatchCollection.set_hatch用法及代碼示例
- Python matplotlib Patch.set_hatch用法及代碼示例
- Python matplotlib Patch.contains_point用法及代碼示例
- Python matplotlib PolyQuadMesh.set_hatch用法及代碼示例
- Python matplotlib PolyCollection.sticky_edges用法及代碼示例
- Python matplotlib PolyCollection.set_hatch用法及代碼示例
- Python matplotlib PdfPages用法及代碼示例
- Python matplotlib PolyQuadMesh用法及代碼示例
- Python matplotlib PsfontsMap用法及代碼示例
- Python matplotlib PolyQuadMesh.sticky_edges用法及代碼示例
- Python matplotlib PickEvent用法及代碼示例
- 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用法及代碼示例
注:本文由純淨天空篩選整理自skytowner.com大神的英文原創作品 matplotlib.collections.PathCollection.sticky_edges。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。