91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

pandas.DataFrame.from_dict怎么直接從字典構建DataFrame

發布時間:2022-06-17 14:11:53 來源:億速云 閱讀:254 作者:iii 欄目:開發技術

這篇文章主要介紹“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”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

上思县| 永定县| 绥德县| 禄丰县| 晴隆县| 南平市| 邮箱| 山丹县| 庆城县| 分宜县| 喀喇| 广丰县| 金昌市| 申扎县| 巴林左旗| 临邑县| 日喀则市| 泉州市| 临湘市| 扶绥县| 岑溪市| 荔浦县| 和平县| 垫江县| 湘潭县| 涟水县| 军事| 夹江县| 石门县| 沙洋县| 周宁县| 东台市| 民和| 阳曲县| 毕节市| 青田县| 乌什县| 龙南县| 梁河县| 保德县| 周口市|