Matplotlib可视化(二十三)-- 美化图形

使用python自带样式进行美化
#!usr/bin/env python
# -*- coding:utf-8 _*-
"""
@author: Caramel
@file: 2.6.py
@time: 2020/03/04
@desc:美化图形
"""

import numpy as np
import matplotlib.pyplot as plt
# plt.style.use('ggplot')
# plt.style.use('fivethirtyeight')

fig, axes = plt.subplots(ncols=2, nrows=2)
ax1, ax2, ax3, ax4 = axes.ravel()
x, y = np.random.normal(size=(2, 100))
ax1.plot(x, y, 'o')
x = np.arange(0, 10)
y = np.arange(0, 10)
ncolors = 7#颜色循环
shift = np.linspace(0, 10, ncolors)

for s in shift:
    ax2.plot(x, y+s, '-')

x = np.arange(5)
y1, y2, y3 = np.random.randint(1, 25, size=(3, 5))
width = 0.25

ax3.bar(x, y1, width)
ax3.bar(x + width, y2, width)
ax3.bar(x + 2 * width, y3, width)

for i in range(7):
    xy = np.random.normal(size=2)
    ax4.add_patch(plt.Circle(xy, 0.3))

ax4.axis('equal')
plt.show()

头文件下面加上 plt.style.use('ggplot')

plt.style.use('fivethirtyeight')

猜你喜欢

转载自blog.csdn.net/qq_42007339/article/details/104667577
今日推荐