画散点图的Python代码
时间: 2023-07-10 11:11:03 浏览: 84
画散点图可以使用Python中的Matplotlib库,具体代码如下:
```python
import matplotlib.pyplot as plt
# 定义x和y坐标
x = [1, 2, 3, 4, 5]
y = [3, 5, 2, 6, 7]
# 绘制散点图
plt.scatter(x, y)
# 添加x和y轴标签
plt.xlabel("x")
plt.ylabel("y")
# 显示图形
plt.show()
```
其中,`x`和`y`分别代表x坐标和y坐标的数据集,`plt.scatter(x, y)`绘制散点图,`plt.xlabel("x")`和`plt.ylabel("y")`添加x轴和y轴标签,`plt.show()`显示图形。
相关问题
画散点图的python代码
画散点图可以使用Python中的Matplotlib库,具体代码如下:
```python
import matplotlib.pyplot as plt
# 定义x和y坐标
x = [1, 2, 3, 4, 5]
y = [3, 5, 2, 6, 7]
# 绘制散点图
plt.scatter(x, y)
# 添加x和y轴标签
plt.xlabel("x")
plt.ylabel("y")
# 显示图形
plt.show()
```
其中,`x`和`y`分别代表x坐标和y坐标的数据集,`plt.scatter(x, y)`绘制散点图,`plt.xlabel("x")`和`plt.ylabel("y")`添加x轴和y轴标签,`plt.show()`显示图形。
双折线图python代码
以下是一个使用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()`方法显示了图形。
阅读全文