4.12Python數據處理篇之Matplotlib系列(十二)---繪圖風格的介紹
阿新 • • 發佈:2019-03-13
img use nump mark 展示 tps back rip href
目錄
- 目錄
- 前言
- (一)不同風格
- 1.說明:
- 2.使用:
- 3.代碼使用:
- (二)例子演示
- 1.dark_background
- 2.bmh
- 3.fivethirtyeight
- 4.ggplot
- 5.grayscale
- 6.Solarize_Light2
目錄
前言
在matplotlib裏默認有好幾種繪圖的風格,今天來作一下簡單介紹。
(一)不同風格
1.說明:
當不設置風格時,便是默認的風格。
風格 | 說明 |
---|---|
dark_background | 黑背景 |
bmh | 貝葉斯風格 |
fivethirtyeight | 無邊框風格 |
ggplot | ggplot也是一個繪圖的模塊,就是套用的這種風格 |
grayscale | 灰度風格 |
Solarize_Light2 | 淡黃背景 |
2.使用:
設置風格的語句:
plt.style.use(‘Solarize_Light2‘)
3.代碼使用:
以“dark_background”風格為例。
# 導入模塊 import matplotlib.pyplot as plt import numpy as np # 數據 x = np.linspace(-5, 5, 50) y = x**2 # 設置風格 plt.style.use('dark_background') # 繪圖 plt.plot(x, y) # 展示 plt.show()
(二)例子演示
1.dark_background
2.bmh
3.fivethirtyeight
4.ggplot
5.grayscale
6.Solarize_Light2
作者:Mark
日期:2019/03/12 周二
4.12Python數據處理篇之Matplotlib系列(十二)---繪圖風格的介紹