pandas 两列数据直方图
时间: 2023-11-23 07:58:17 浏览: 250
Pandas玩转Excel-Python数据分析轻松学
以下是使用pandas绘制两列数据直方图的方法:
假设我们要绘制homes数据集中的sqft_living和price两列数据的直方图。
```python
import pandas as pd
import matplotlib.pyplot as plt
# 读取数据
homes = pd.read_excel('C:/Tools/Python/Pandas/014/home_data.xlsx')
# 绘制直方图
homes[['sqft_living', 'price']].plot.hist(alpha=0.5, bins=50)
# 设置图例和标题
plt.legend(['sqft_living', 'price'])
plt.title('Histogram of sqft_living and price')
# 显示图形
plt.show()
```
运行以上代码,即可得到sqft_living和price两列数据的直方图。
阅读全文