双折线图python代码
时间: 2023-08-31 16:10:37 浏览: 226
以下是一个使用Python绘制双折线图的示例代码:
```python
import matplotlib.pyplot as plt
# X轴数据
x = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
# 折线1数据
y1 = [10, 20, 30, 40, 50, 60, 70, 80, 90, 100]
# 折线2数据
y2 = [5, 15, 25, 35, 45, 55, 65, 75, 85, 95]
# 创建画布
fig, ax = plt.subplots()
# 绘制折线1
ax.plot(x, y1, color='blue', label='Line 1')
# 绘制折线2
ax.plot(x, y2, color='red', label='Line 2')
# 设置标题和标签
ax.set_title('Double Line Chart')
ax.set_xlabel('X-axis')
ax.set_ylabel('Y-axis')
# 显示图例
ax.legend()
# 显示图形
plt.show()
```
在此示例中,我们使用了`matplotlib.pyplot`库来绘制双折线图。首先,我们定义了X轴数据和两条折线的数据。然后,我们创建了一个画布,并使用`ax.plot()`方法分别绘制了两条折线。接下来,我们设置了标题和标签,然后使用`ax.legend()`方法显示了图例。最后,我们使用`plt.show()`方法显示了图形。
相关问题
python双折线图
你可以使用Python中的matplotlib库来绘制双折线图。下面是一个简单的示例代码:
```python
import matplotlib.pyplot as plt
# 准备数据
x = [1, 2, 3, 4, 5] # x轴数据
y1 = [10, 12, 15, 8, 9] # 第一条曲线的y轴数据
y2 = [7, 9, 11, 6, 13] # 第二条曲线的y轴数据
# 绘制双折线图
plt.plot(x, y1, marker='o', label='Line 1')
plt.plot(x, y2, marker='s', label='Line 2')
# 设置图例和标题
plt.legend()
plt.title('Double Line Chart')
# 显示图形
plt.show()
```
这段代码会生成一个简单的双折线图,x轴为1到5,y轴分别对应两条曲线的数据。你可以根据自己的需求修改数据和样式。
python画双折线图
您可以使用Python的matplotlib库来绘制双折线图。以下是一个简单的示例代码:
```python
import matplotlib.pyplot as plt
# 数据
x = [1, 2, 3, 4, 5]
y1 = [10, 15, 7, 12, 9]
y2 = [8, 12, 9, 14, 10]
# 创建图形和轴对象
fig, ax = plt.subplots()
# 绘制折线图
ax.plot(x, y1, label='Line 1', color='blue')
ax.plot(x, y2, label='Line 2', color='red')
# 添加标题和标签
ax.set_title('Double Line Chart')
ax.set_xlabel('X-axis')
ax.set_ylabel('Y-axis')
# 添加图例
ax.legend()
# 显示图形
plt.show()
```
在这个例子中,我们创建了两个数据系列 `y1` 和 `y2`,并使用 `plot` 函数绘制了两条折线。通过设置不同的颜色和添加图例,我们可以区分两条线。最后,通过调用 `show` 函数显示图形。
您可以根据需要修改数据和样式来绘制自己的双折线图。希望对您有帮助!
阅读全文