我有以下 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(),它返回不同的格式。