91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在matplotlib中繪圖樣式

發布時間:2021-02-04 16:04:13 來源:億速云 閱讀:187 作者:Leah 欄目:開發技術

這篇文章將為大家詳細講解有關怎么在matplotlib中繪圖樣式,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

樣式是定義圖表可視化外觀的配置,它由一組預置的rcParams參數構成。matplotlib預置了一系列樣式風格,可直接使用。

樣式使用方法

樣式相關模塊為style

1. 顯示本機可用樣式

matplotlib.style.available返回本機可用樣式的列表。
列表只讀,樣式更新后,需要使用reload_library()重新加載樣式。

In [1]: import matplotlib.style as style
In [2]: style.available
Out[2]:
['Solarize_Light2',
 '_classic_test_patch',
 'bmh',
 'classic',
 'dark_background',
 'fast',
 'fivethirtyeight',
 'ggplot',
 'grayscale',
 'seaborn',
 'seaborn-bright',
 'seaborn-colorblind',
 'seaborn-dark',
 'seaborn-dark-palette',
 'seaborn-darkgrid',
 'seaborn-deep',
 'seaborn-muted',
 'seaborn-notebook',
 'seaborn-paper',
 'seaborn-pastel',
 'seaborn-poster',
 'seaborn-talk',
 'seaborn-ticks',
 'seaborn-white',
 'seaborn-whitegrid',
 'tableau-colorblind10']

2. 顯示樣式詳細設置

matplotlib.style.library以字典的形式返回所有樣式的定義,字典鍵為樣式名稱,鍵為定義樣式的 RcParams對象。
字典對象也是只讀的,更新樣式后,需要使用reload_library()重新加載樣式。

In [6]: style.library['fast']
Out[6]:
RcParams({'agg.path.chunksize': 10000,
     'path.simplify': True,
     'path.simplify_threshold': 1.0})

3. 重新加載樣式

matplotlib.style.reload_library()重新加載樣式。

4. 使用樣式

matplotlib.style.use(style)matplotlib的繪圖樣式設置為某種樣式。
使用default樣式可以將樣式為恢復到默認樣式。
該函數只會更新style中定義的rcParams配置,其余rcParams配置保持不變。

參數style有四種取值:

  • str:樣式名稱或者樣式文件的路徑/url。通過style.available查看可用的樣式名稱。

  • dict:以rcParams配置項和值為鍵值對的字典。

  • Path:指向樣式文件的Path對象。

  • list:樣式支持組合使用,將多個樣式配置配置放置在列表中,matplotlib將逐個執行列表中每個元素的配置,元素可以為strPath或者dict,列表右邊的元素會覆蓋前面元素的配置。

import matplotlib.pyplot as plt
plt.bar([1,2,3],[1,2,3])
plt.show()

怎么在matplotlib中繪圖樣式

import matplotlib.pyplot as plt
plt.style.use('ggplot')
plt.bar([1,2,3],[1,2,3])
plt.show()

怎么在matplotlib中繪圖樣式

import matplotlib.pyplot as plt
plt.style.use(['ggplot','dark_background'])
plt.bar([1,2,3],[1,2,3])
plt.show()

怎么在matplotlib中繪圖樣式

import matplotlib.pyplot as plt
plt.subplot(221)
plt.bar([1,2,3],[1,2,3])
plt.style.use('ggplot')
plt.subplot(222)
plt.bar([1,2,3],[1,2,3])
plt.style.use('grayscale')
plt.subplot(223)
plt.bar([1,2,3],[1,2,3])
plt.style.use(['ggplot','grayscale'])
plt.subplot(224)
plt.bar([1,2,3],[1,2,3])
plt.show()

關于怎么在matplotlib中繪圖樣式就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

洛扎县| 广平县| 房山区| 饶阳县| 奉化市| 根河市| 普洱| 崇阳县| 洞头县| 玛纳斯县| 兰考县| 涞源县| 泸西县| 克东县| 临澧县| 普兰店市| 天等县| 达尔| 马边| 乌拉特中旗| 吉林省| 南通市| 宁津县| 新营市| 兰坪| 宽城| 长沙县| 聊城市| 安平县| 宜君县| 襄樊市| 睢宁县| 万全县| 花垣县| 南通市| 祁连县| 莱西市| 深州市| 遂川县| 三原县| 阿鲁科尔沁旗|