python画图代码大全简单
时间: 2023-07-22 07:32:18 浏览: 172
以下是使用Python中的Matplotlib库绘制图形的一些示例代码:
1. 绘制折线图:
```python
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5]
y = [3, 5, 4, 6, 7]
plt.plot(x, y)
plt.xlabel('x')
plt.ylabel('y')
plt.title('Line chart')
plt.show()
```
2. 绘制散点图:
```python
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5]
y = [3, 5, 4, 6, 7]
plt.scatter(x, y)
plt.xlabel('x')
plt.ylabel('y')
plt.title('Scatter plot')
plt.show()
```
3. 绘制柱状图:
```python
import matplotlib.pyplot as plt
x = ['A', 'B', 'C', 'D', 'E']
y = [3, 5, 4, 6, 7]
plt.bar(x, y)
plt.xlabel('x')
plt.ylabel('y')
plt.title('Bar chart')
plt.show()
```
4. 绘制饼图:
```python
import matplotlib.pyplot as plt
labels = ['A', 'B', 'C', 'D', 'E']
sizes = [15, 30, 45, 10, 5]
plt.pie(sizes, labels=labels, autopct='%1.1f%%')
plt.title('Pie chart')
plt.show()
```
以上是一些简单的Python绘图代码示例,你可以根据具体需求进行修改和拓展。
阅读全文