0

我有以下 Pandas 支点

Apple    Green    5
         Red      3
         Yellow   4
Grapes   Red      1
         Green    3

并希望将此数据转换为 JSON,如下所示:

{
    Apple: {
            Green : 5, 
            Red:    3, 
            Yellow: 4,
            },
    Grapes:{ 
            Red :   1, 
            Green:  3 
            }
}

我该如何做到这一点?我试过 to_json(),它返回不同的格式。

4

1 回答 1

0

DataFrame.to_json 有几个参数用于 JSON 的方向。

尝试类似的pd.to_json(orient='records')方法,如果它不起作用,请检查http://pandas.pydata.org/pandas-docs/version/0.17.1/generated/pandas.DataFrame.to_json.html中 orient 变量的其他值

于 2016-01-27T03:54:12.197 回答