笔记关键词检索?

在所有笔记中搜索你感兴趣的关键词!

《TensorFlow深度学习算法原理与编程实战》

作者:蒋子阳


DataFrame.hist()

绘制图表了解一个列中值的分布

import pandas as pd
import matplotlib.pyplot as plt

california_housing_dataframe = pd.read_csv("https://download.mlcc.google.cn/mledu-datasets/california_housing_train.csv", sep=",")
california_housing_dataframe.hist('median_house_value')
plt.show()

结果

 

评论 (0)

发布评论

你的邮箱地址不会被公开。请输入所有带 * 的信息。