Pandas DataFrame value_counts dicts的字典

时间:2018-01-10 10:30:25

标签: python pandas dictionary-comprehension

我试图创建一个字典,其中键是pandas列(所有类型对象),键是每个相应列的value_counts()字典。

我尝试这样做,但我得到了TypeError: unhashable type: 'dict'

value_counts_dict = {(c, dict(df[c].value_counts())) for c in df}

这个替代方案有效,但它给了我一个元组列表:

value_counts_tuples = [(c, dict(df[c].value_counts())) for c in df]

如果有可能,有人请告诉我怎么做?

1 个答案:

答案 0 :(得分:2)

我相信你需要:

value_counts_dict = {c: df[c].value_counts().to_dict() for c in df}

或者:

value_counts_dict = {c: dict(df[c].value_counts()) for c in df}