参考文献:matplotlib中文网 https://www.matplotlib.org
需求一: 利用subplots()创建2个子图,即1行2列,在极坐标系下绘制花瓣图 (提示:查看subplots的官网API文档,利用subplot_kw参数控制坐标系类型,即投影方式)
需求二: 画布总标题为“花瓣图”
首先导入库并准备数据:
import numpy as np
import matplotlib.pyplot as plt
plt.rcParams['font.family'] = 'SimHei'
plt.rcParams['axes.unicode_minus'] = False #设置中文
#1. 准备数据
theta = np.linspace(0, 2*np.pi, 400)
r = np.sin(theta**2)
然后 绘制图:
fig, axs = plt.subplots(1, 2, subplot_kw={'projection': 'polar'})
axs[0].plot(theta, r, color='blue') #设置颜色
axs[1].scatter(theta, r, color='pink')
添加画布:
# 3. 设置画布中文标题“花瓣图”(字号35,颜色为紫色)
fig.suptitle('花瓣图', fontsize=35, color='purple')
展示效果图:
import numpy as np
import matplotlib.pyplot as plt
plt.rcParams['font.family'] = 'SimHei'
plt.rcParams['axes.unicode_minus'] = False # 设置中文
# 1. 准备数据
theta = np.linspace(0, 2 * np.pi, 400)
r = np.sin(theta ** 2)
# 2. 绘图(极坐标系下绘制曲线和散点)
fig, axs = plt.subplots(1, 2, subplot_kw={'projection': 'polar'})
axs[0].plot(theta, r, color='blue') #设置颜色
axs[1].scatter(theta, r, color='pink')
# 3. 设置画布中文标题“花瓣图”(字号35,颜色为紫色)
fig.suptitle('花瓣图', fontsize=35, color='purple')
# 4. 展示图表
plt.tight_layout()
plt.show()