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

溫馨提示×

溫馨提示×

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

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

如何向Pandas中的DataFrame添加行

發布時間:2022-03-08 16:16:30 來源:億速云 閱讀:1827 作者:小新 欄目:開發技術

這篇文章給大家分享的是有關如何向Pandas中的DataFrame添加行的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

您可以使用df.loc()函數在Pandas DataFrame的末尾添加一行:

#add row to end of DataFrame
df.loc[len(df.index)] = [value1, value2, value3, ...]

您可以使用df.append()函數將現有 DataFrame 的幾行附加到另一個 DataFrame 的末尾:

#append rows of df2 to end of existing DataFrame
df = df.append(df2, ignore_index = True)

下面的例子展示了如何在實踐中使用這些函數。

示例 1:向 Pandas DataFrame 添加一行

以下代碼顯示了如何在 Pandas DataFrame 的末尾添加一行:

import pandas as pd
 
#create DataFrame
df = pd.DataFrame({'points': [10, 12, 12, 14, 13, 18],
                   'rebounds': [7, 7, 8, 13, 7, 4],
                   'assists': [11, 8, 10, 6, 6, 5]})
 
#view DataFrame
df
 
	points	rebounds assists
0	10	7	 11
1	12	7	 8
2	12	8	 10
3	14	13	 6
4	13	7	 6
5	18	4	 5
 
#add new row to end of DataFrame
df.loc[len(df.index)] = [20, 7, 5]
 
#view updated DataFrame
df
 
        points	rebounds assists
0	10	7	 11
1	12	7	 8
2	12	8	 10
3	14	13	 6
4	13	7	 6
5	18	4	 5
6	20	7	 5

示例 2:向 Pandas DataFrame 添加幾行

以下代碼顯示了如何將現有 DataFrame 的幾行添加到另一個 DataFrame 的末尾:

import pandas as pd
 
#create DataFrame
df = pd.DataFrame({'points': [10, 12, 12, 14, 13, 18],
                   'rebounds': [7, 7, 8, 13, 7, 4],
                   'assists': [11, 8, 10, 6, 6, 5]})
 
#view DataFrame
df
 
	points	rebounds assists
0	10	7	 11
1	12	7	 8
2	12	8	 10
3	14	13	 6
4	13	7	 6
5	18	4	 5
 
#define second DataFrame
df2 = pd.DataFrame({'points': [21, 25, 26],
                    'rebounds': [7, 7, 13],
                    'assists': [11, 3, 3]})
 
#add new row to end of DataFrame
df = df.append(df2, ignore_index = True)
 
#view updated DataFrame
df
 
        points	rebounds assists
0	10	7	 11
1	12	7	 8
2	12	8	 10
3	14	13	 6
4	13	7	 6
5	18	4	 5
6	21	7	 11
7	25	7	 3
8	26	13	 3

請注意,兩個 DataFrame 應該具有相同的列名,以便成功地將一個 DataFrame 的行附加到另一個 DataFrame 的末尾。

補充:優雅的增加一列,一定要優雅!

df['new_colu']='12'#向 DataFrame 添加一列,該列為同一值

df
Out[93]: 
        one two three four new_colu
a         0   1     2    3       12
b         4   5     6    7       12
c         8   9    10   11       12
d        12  13    14   15       12
new_raw   3   3     3    3       12

感謝各位的閱讀!關于“如何向Pandas中的DataFrame添加行”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

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

AI

万荣县| 策勒县| 新闻| 霸州市| 泰顺县| 仁寿县| 宜君县| 扎囊县| 英吉沙县| 伊吾县| 宝丰县| 定州市| 余庆县| 密山市| 纳雍县| 玉田县| 沂南县| 陵水| 苍南县| 临颍县| 札达县| 高阳县| 杭锦旗| 平顺县| 北辰区| 博乐市| 镇坪县| 青海省| 天津市| 丽江市| 监利县| 庄河市| 宁强县| 孟津县| 金湖县| 阳曲县| 宝兴县| 武义县| 吐鲁番市| 平江县| 永年县|