“Pandas wählen mehrere Spalten aus” Code-Antworten

Lassen Sie mehrere Spalten pandas fallen

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

Python - Subset spezifische Spaltenname in einem Datenrahmen

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

Python: Wählen Sie bestimmte Spalten in einem Datenrahmen aus

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

So wählen Sie separate Spalten aus dem Pandas DataFrame -Objekt aus

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

Pandas wählen mehrere Spalten aus

#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

Wählen Sie 2 COLs aus DataFrame Python Pandas

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

Ähnliche Antworten wie “Pandas wählen mehrere Spalten aus”

Fragen ähnlich wie “Pandas wählen mehrere Spalten aus”

Weitere verwandte Antworten zu “Pandas wählen mehrere Spalten aus” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen