使用matplotlib实现比较好看的图
时间: 2024-06-11 14:04:13 浏览: 83
使用Matplotlib 绘制精美的数学图形例子
以下是一个使用matplotlib实现比较好看的折线图的示例代码:
```python
import matplotlib.pyplot as plt
import numpy as np
# 生成示例数据
x = np.arange(0, 10, 0.1)
y1 = np.sin(x)
y2 = np.cos(x)
# 创建画布
fig, ax = plt.subplots()
# 绘制两条曲线
ax.plot(x, y1, label='sin', linewidth=2)
ax.plot(x, y2, label='cos', linewidth=2)
# 设置坐标轴标签和标题
ax.set_xlabel('x')
ax.set_ylabel('y')
ax.set_title('Sin and Cos Curve')
# 添加图例
ax.legend()
# 设置背景颜色和边框样式
ax.set_facecolor('#f5f5f5')
ax.spines['top'].set_visible(False)
ax.spines['right'].set_visible(False)
# 显示图像
plt.show()
```
这个示例代码生成了一张折线图,其中有两条曲线,分别是正弦函数和余弦函数。图像的坐标轴标签、标题、图例和背景颜色都进行了设置,使得图像更加直观和易读。同时,还设置了坐标轴边框的样式,使得整个图像更加美观。
阅读全文