欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

matplotlib-使用不同的显示风格

程序员文章站 2022-06-30 11:50:26
...
import matplotlib.pyplot as plt
# 查看内置的显示风格
plt.style.available

结果:
[‘bmh’,
‘classic’,
‘dark_background’,
‘fast’,
‘fivethirtyeight’,
‘ggplot’,
‘grayscale’,
‘seaborn-bright’,
‘seaborn-colorblind’,
‘seaborn-dark-palette’,
‘seaborn-dark’,
‘seaborn-darkgrid’,
‘seaborn-deep’,
‘seaborn-muted’,
‘seaborn-notebook’,
‘seaborn-paper’,
‘seaborn-pastel’,
‘seaborn-poster’,
‘seaborn-talk’,
‘seaborn-ticks’,
‘seaborn-white’,
‘seaborn-whitegrid’,
‘seaborn’,
‘Solarize_Light2’,
‘tableau-colorblind10’,
‘_classic_test’]

使用

plt.style.use('seaborn-paper')

例子:

# 生成画布
fig = plt.figure()

plt.style.use('seaborn-paper')

#添加一个子图
ax1 = fig.add_subplot(111)
ax1.plot(x,y1)

#添加一个子图
ax3 = ax1.twiny()
ax3.plot(x,y2,'r')
plt.show()

matplotlib-使用不同的显示风格

相关标签: 图表们