python代码,编写漂亮的折线图,条形图,饼状图
时间: 2023-03-20 09:00:49 浏览: 86
饼状图,折线图,柱状图的代码
以下是Python Matplotlib库实现漂亮的折线图,条形图和饼状图的代码示例:
### 折线图
```python
import matplotlib.pyplot as plt
# X轴数据
x = [1, 2, 3, 4, 5]
# Y轴数据
y = [10, 24, 36, 40, 56]
# 绘制折线图
plt.plot(x, y)
# 添加标题和标签
plt.title('Line Chart')
plt.xlabel('X Axis')
plt.ylabel('Y Axis')
# 显示图形
plt.show()
```
### 条形图
```python
import matplotlib.pyplot as plt
# X轴数据
x = ['A', 'B', 'C', 'D', 'E']
# Y轴数据
y = [10, 24, 36, 40, 56]
# 绘制条形图
plt.bar(x, y)
# 添加标题和标签
plt.title('Bar Chart')
plt.xlabel('X Axis')
plt.ylabel('Y Axis')
# 显示图形
plt.show()
```
### 饼状图
```python
import matplotlib.pyplot as plt
# 数据
sizes = [15, 30, 45, 10]
# 标签
labels = ['A', 'B', 'C', 'D']
# 颜色
colors = ['red', 'blue', 'green', 'yellow']
# 绘制饼状图
plt.pie(sizes, labels=labels, colors=colors)
# 添加标题
plt.title('Pie Chart')
# 显示图形
plt.show()
```
以上代码只是一个示例,你可以根据自己的需要进行修改和调整来实现更加复杂和漂亮的图形。
阅读全文