如题
2个回答
萝卜青菜各有所爱吧,你要你的林志玲,他要他的许晴。
plt.style.use('ggplot')
plt.style.use('bmh')
plt.style.use('fivethirtyeight')
plt.style.use('seaborn-whitegrid')
plt.style.use('dark_background')
plt.style.use('grayscale')
品种众多,供君选择。
bmh看起来挺不错的
-
batmanX
2017-09-16 10:04
plt.style.use('ggplot')
用plt.style.use('ggplot')就可以设置画图的风格。其中‘ggplot'就是matplotlib提供的一种画图风格。
使用 print(plt.style.available) 就可以看到所以可以使用的画图风格。
总的来说,这些可设置的画图风格都比matplotlib默认的会显得更好看更专业一些。
下面两幅图分别是使用了ggplot的风格和matplotlib默认的风格的柱状图的对比。