您好,登錄后才能下訂單哦!
這篇文章主要介紹“pandas.DataFrame.from_dict怎么直接從字典構建DataFrame”,在日常操作中,相信很多人在pandas.DataFrame.from_dict怎么直接從字典構建DataFrame問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”pandas.DataFrame.from_dict怎么直接從字典構建DataFrame”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
pandas函數中pandas.DataFrame.from_dict 直接從字典構建DataFrame 。
DataFrame from_dict()方法用于將Dict轉換為DataFrame對象。 此方法接受以下參數。
data: dict or array like object to create DataFrame.data :字典或類似數組的對象來創建DataFrame。
orient: The orientation of the data. The allowed values are (‘columns’, ‘index’), default is the ‘columns’. orient :數據的方向。 允許值為(“列”,“索引”),默認值為“列”。 Specify orient='index' to create the DataFrame using dictionary keys as rows:。 當參數orient為index值時,會將字典的keys作為DataFrame的行。(默認是keys變為列)
columns: a list of values to use as labels for the DataFrame when orientation is ‘index’. If it’s used with columns orientation, ValueError is raised. columns :當方向為“索引”時,用作DataFrame標簽的值的列表。 如果與列方向一起使用,則會引發ValueError 。
1)By default the keys of the dict become the DataFrame columns:
默認是將字典的keys作為列
data = {'col_1': [3, 2, 1, 0], 'col_2': ['a', 'b', 'c', 'd']} pd.DataFrame.from_dict(data) col_1 col_2 0 3 a 1 2 b 2 1 c 3 0 d
2) Specify orient='index' to create the DataFrame using dictionary keys as rows: 參數orient為index值時,會將字典的keys作為DataFrame的行
data = {'row_1': [3, 2, 1, 0], 'row_2': ['a', 'b', 'c', 'd']} pd.DataFrame.from_dict(data, orient='index') 0 1 2 3 row_1 3 2 1 0 row_2 a b c d
3) orient為index值時, 可以手動命名列名
pd.DataFrame.from_dict(data, orient='index', columns=['A', 'B', 'C', 'D']) A B C D row_1 3 2 1 0 row_2 a b c d
到此,關于“pandas.DataFrame.from_dict怎么直接從字典構建DataFrame”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。