我关注关于机器学习的谷歌类(class)。我在这部分:pandas
但是在我的 Mac 上,当我想使用以下命令生成图表时:
california_housing_dataframe.hist('housing_median_age')
它不起作用。出现 python 图标,但屏幕上没有显示任何内容。
我在 matplotlibrc 中看到了一些有关后端参数的提示,但我的等于 MacOSX,它应该可以工作吗?
感谢帮助
最佳答案
详细说明 T. Kelly 的评论:
您需要调用 plt.show()。这对我有用:
import matplotlib.pyplot as plt
california_housing_dataframe.hist('housing_median_age')
plt.show()
关于python - Pandas DataFrame.hist() 不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51519178/