当使用Matplotlib库时,一般用于创建各种类型的图表,包括折线图、散点图、柱状图、饼图等。以下是一些基本的Matplotlib用法介绍:
基本绘图
import matplotlib.pyplot as plt
# 创建简单的折线图
x = [1, 2, 3, 4, 5]
y = [2, 3, 5, 7, 11]
plt.plot(x, y)
# 添加标题和标签
plt.title('Simple Line Plot')
plt.xlabel('X-axis Label')
plt.ylabel('Y-axis Label')
# 显示图形
plt.show()
散点图
import matplotlib.pyplot as plt
# 创建散点图
x = [1, 2, 3, 4, 5]
y = [2, 3, 5, 7, 11]
plt.scatter(x, y, color='red', marker='o')
# 添加标题和标签
plt.title('Scatter Plot')
plt.xlabel('X-axis Label')
plt.ylabel('Y-axis Label')
# 显示图形
plt.show()
柱状图
import matplotlib.pyplot as plt
# 创建柱状图
categories = ['Category A', 'Category B', 'Category C']
values = [3, 7, 5]
plt.bar(categories, values, color='blue')
# 添加标题和标签
plt.title('Bar Chart')
plt.xlabel('Categories')
plt.ylabel('Values')
# 显示图形
plt.show()
饼图
import matplotlib.pyplot as plt
# 创建饼图
labels = ['Category A', 'Category B', 'Category C']
sizes = [30, 45, 25]
plt.pie(sizes, labels=labels, autopct='%1.1f%%', startangle=90, colors=['red', 'green', 'blue'])
# 添加标题
plt.title('Pie Chart')
# 显示图形
plt.show()
常用函数
plt.plot()是Matplotlib库中用于创建折线图的函数。它至少接受两个参数,分别是x轴和y轴的数据,并以这些数据为基础创建折线图。
plt.plot(x, y, color='red', linestyle='--', marker='o', label='Data Points')
`plt.plot()`函数的一些常用参数:
`color`:指定线的颜色。
`linestyle`:指定线的样式,如