Python画出 身高体重关系散点图
时间: 2024-03-06 22:44:26 浏览: 279
利用python绘制散点图
4星 · 用户满意度95%
要使用Python画出身高体重关系的散点图,你可以使用matplotlib库来实现。以下是一个简单的示例代码:
```python
import matplotlib.pyplot as plt
# 身高数据
height = [160, 165, 170, 175, 180]
# 体重数据
weight = [50, 55, 60, 65, 70]
# 绘制散点图
plt.scatter(height, weight)
# 设置图表标题和坐标轴标签
plt.title("Height-Weight Relationship")
plt.xlabel("Height (cm)")
plt.ylabel("Weight (kg)")
# 显示图表
plt.show()
```
运行以上代码,你将得到一个身高体重关系的散点图。其中,身高数据存储在`height`列表中,体重数据存储在`weight`列表中。通过`plt.scatter()`函数绘制散点图,然后使用`plt.title()`、`plt.xlabel()`和`plt.ylabel()`函数设置图表标题和坐标轴标签。最后,使用`plt.show()`函数显示图表。
阅读全文