Python数据框:即使没有错误,直方图也不显示

时间:2016-05-14 22:21:18

标签: python pandas matplotlib dataframe

我正在使用以下代码,尝试绘制“target_column”的直方图,其分类值为1到99.

df_train = pd.read_csv('myData.csv').dropna()
df_train.hist(column='target_column')

代码运行时没有抛出错误,但我根本看不到任何直方图。我正在使用python虚拟环境并具有以下配置: “Create a file ~/.matplotlib/matplotlibrc there and add the following code: backend: TkAgg

我有什么遗漏的吗?谢谢!

0 个答案:

没有答案