我正在研究熊猫的介绍,我很难从给定的数据集中看到直方图。
这是我的代码:
import pandas
import matplotlib
matplotlib.use('TkAgg')
california_housing_dataframe = pandas.read_csv("https://storage.googleapis.com/mledu-datasets/california_housing_train.csv", sep=",")
california_housing_dataframe.hist('housing_median_age')
当我运行该程序时,我的底座上会出现一个图标,只需一秒钟就会消失。几乎就像直方图被创建但立即关闭了。
感谢任何帮助!
答案 0 :(得分:1)
你的脚本在运行后可能会关闭。
只需添加
raw_input()
在脚本的末尾