“panda pilih beberapa kolom” Kode Jawaban

Jatuhkan beberapa kolom panda

yourdf.drop(['columnheading1', 'columnheading2'], axis=1, inplace=True)
Nutty Newt

Python - Subset Nama Kolom Khusus Dalam DataFrame

columns = ['b', 'c']
df1 = pd.DataFrame(df, columns=columns)
Andrea Perlato

Python: Pilih kolom tertentu dalam bingkai data

df = df[["Column_Name1", "Column_Name2"]]
Andrea Perlato

cara memilih kolom terpisah dari objek DataFrame Pandas

df1 = df.iloc[:, 0:2] # If you want to do it by index. Remember that Python does not slice inclusive of the ending index.
df1 = df[['a', 'b']] ## if you want to do it b nae
Obnoxious Ocelot

panda pilih beberapa kolom

#Example, in a df with about 20 columns
#If you want to select columns 1-3, 7, 8, 12-15
# Use numpy's np.r_ to slice the columns and parse it into pandas iloc[] slicer

df.iloc[:, np.r_[1:3, 7, 8, 12:15]]
#This selects all rows "df.iloc[:," and then these selected columns "np.r_[1:3, 7, 8, 12:15]]"
#Remember to import numpy ;)
Kwams

Pilih 2 Cols dari DataFrame Python Pandas

# Convert the dictionary into DataFrame 
df = pd.DataFrame(data)
  
# select two columns
df[['Name', 'Qualification']]
Gentle Gaur

Jawaban yang mirip dengan “panda pilih beberapa kolom”

Pertanyaan yang mirip dengan “panda pilih beberapa kolom”

Lebih banyak jawaban terkait untuk “panda pilih beberapa kolom” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya