次のパンダピボットがあります
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() を試しました。