其他
Python可视化|matplotlib04-绘图风格(plt.style)大全
"pythonic生物人"的第23篇分享
摘要
python中matplotlib绘图时,如何使用plt.style.use切换绘图风格?
matplotlib中有哪些绘图风格可以使用?
matplotlib中各种风格是什么样子的?
目录
2、绘图风格使用
3、26种风格效果是什么样子的
4、参考资料
正文开始啦
1、matplotlib有哪些绘图风格
使用plt.style.available输出所有风格名称,共计26种。
import matplotlib.pyplot as plt
print(plt.style.available)
2、绘图风格使用
plt.style.use('ggplot')#使用ggplot风格。
3、26种风格效果是什么样子的
4、参考资料
https://matplotlib.org/gallery/style_sheets/style_sheets_reference.html#sphx-glr-gallery-style-sheets-style-sheets-reference-py
python可视化|matplotlib01-绘图方式|图形结构
python可视化|matplotlib02-matplotlib.pyplot坐标轴|刻度值|刻度|标题设置
Python可视化|matplotlib03-一文掌握marker和linestyle使用