dictのdictをDataFrameにする
dictのdictをDataFrameに変換したい
以下のようなdictを一発でデータフレームにしようとしました。
data = {
'1001': { 'A1' : '1', 'A2', '2' },
'1002': { 'A1' : '3', 'A2', '4' },
}
1001
,1002
を index に、その後ろのdictのkeyを列にvalueを値にしたい
以下でOKです!
df = pd.DataFrame.from_dict(data, orient='index')
print(df)
結果
A1 A2
1001 1 2
1002 3 4
以上となります。
ご参考にー
Author And Source
この問題について(dictのdictをDataFrameにする), 我々は、より多くの情報をここで見つけました https://qiita.com/okakam/items/8db507c9f489ac20c9e6著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .