“Pandy wybierz wiele kolumn” Kod odpowiedzi

Upuść wiele kolumn pandy

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

Python - Nazwa kolumn specyficznych dla podzbioru w ramce danych

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

Python: Wybierz określone kolumny w ramce danych

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

Jak wybrać osobne kolumny z obiektu Pandas DataFrame

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

Pandy wybierz wiele kolumn

#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

Wybierz 2 Cols z DataFrame Python Pandas

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

Odpowiedzi podobne do “Pandy wybierz wiele kolumn”

Pytania podobne do “Pandy wybierz wiele kolumn”

Więcej pokrewnych odpowiedzi na “Pandy wybierz wiele kolumn” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu