วิธีเพิ่มหลายคอลัมน์ใน pandas dataframe
คุณสามารถใช้วิธีการต่อไปนี้เพื่อเพิ่มหลายคอลัมน์ลงใน DataFrame ของแพนด้า:
วิธีที่ 1: เพิ่มหลายคอลัมน์โดยแต่ละคอลัมน์มีค่า
df[[' new1 ', ' new2 ', ' new3 ']] = pd. DataFrame ([[ 4 , ' hey ', np. nan ]], index=df. index )
วิธีที่ 2: เพิ่มหลายคอลัมน์โดยแต่ละคอลัมน์มีค่าหลายค่า
df[' new1 '] = [1, 5, 5, 4, 3, 6] df[' new2 '] = ['hi', 'hey', 'hey', 'hey', 'hello', 'yo'] df[' new3 '] = [12, 4, 4, 3, 6, 7]
ตัวอย่างต่อไปนี้แสดงวิธีการใช้แต่ละวิธีกับ DataFrame แพนด้าต่อไปนี้:
import pandas as pd import numpy as np #createDataFrame df = pd. DataFrame ({' team ': ['A', 'B', 'C', 'D', 'E', 'F'], ' points ': [18, 22, 19, 14, 14, 11], ' assists ': [5, 7, 7, 9, 12, 9]}) #view DataFrame df team points assists 0 to 18 5 1 B 22 7 2 C 19 7 3 D 14 9 4 E 14 12 5 F 11 9
วิธีที่ 1: เพิ่มหลายคอลัมน์โดยแต่ละคอลัมน์มีค่า
รหัสต่อไปนี้แสดงวิธีการเพิ่มสามคอลัมน์ใหม่ให้กับ Pandas DataFrame ซึ่งแต่ละคอลัมน์ใหม่มีเพียงค่าเดียวเท่านั้น:
#add three new columns to DataFrame
df[[' new1 ', ' new2 ', ' new3 ']] = pd. DataFrame ([[ 4 , ' hey ', np. nan ]], index=df. index )
#view updated DataFrame
df
team points assists new1 new2 new3
0 A 18 5 4 hey NaN
1 B 22 7 4 hey NaN
2 C 19 7 4 hey NaN
3 D 14 9 4 hey NaN
4 E 14 12 4 hey NaN
5 F 11 9 4 hey NaN
โปรดทราบว่ามีการเพิ่มคอลัมน์ใหม่สามคอลัมน์ ได้แก่ new1 , new2 และ new3 ลงใน DataFrame
โปรดทราบว่าแต่ละคอลัมน์ใหม่มีค่าเฉพาะเพียงค่าเดียวเท่านั้น
วิธีที่ 2: เพิ่มหลายคอลัมน์โดยแต่ละคอลัมน์มีค่าหลายค่า
รหัสต่อไปนี้แสดงวิธีการเพิ่มสามคอลัมน์ใหม่ลงใน Pandas DataFrame ซึ่งแต่ละคอลัมน์ใหม่มีหลายค่า:
#add three new columns to DataFrame
df[' new1 '] = [1, 5, 5, 4, 3, 6]
df[' new2 '] = ['hi', 'hey', 'hey', 'hey', 'hello', 'yo']
df[' new3 '] = [12, 4, 4, 3, 6, 7]
#view updated DataFrame
df
team points assists new1 new2 new3
0 A 18 5 1 hi 12
1 B 22 7 5 hey 4
2 C 19 7 5 hey 4
3 D 14 9 4 hey 3
4 E 14 12 3 hello 6
5 F 11 9 6 yo 7
โปรดทราบว่ามีการเพิ่มคอลัมน์ใหม่สามคอลัมน์ ได้แก่ new1 , new2 และ new3 ลงใน DataFrame
โปรดทราบว่าแต่ละคอลัมน์ใหม่มีหลายค่า
แหล่งข้อมูลเพิ่มเติม
บทช่วยสอนต่อไปนี้จะอธิบายวิธีดำเนินการทั่วไปอื่น ๆ ในแพนด้า:
วิธีจัดเรียงตามหลายคอลัมน์ใน Pandas
วิธีตรวจสอบว่ามีคอลัมน์อยู่ใน Pandas หรือไม่
วิธีเปลี่ยนชื่อคอลัมน์ใน Pandas