“Pandas Zmień kolejność kolumny” Kod odpowiedzi

Jak zmienić kolejność kolumny w Pandy DataFrame

df = df.reindex(columns=column_names)
Ugliest Unicorn

Kolumny zamawiania pandy

# setting up a dummy dataframe
raw_data = {'name': ['Willard Morris', 'Al Jennings', 'Omar Mullins', 'Spencer McDaniel'],
        'age': [20, 19, 22, 21],
        'favorite_color': ['blue', 'red', 'yellow', "green"],
        'grade': [88, 92, 95, 70]}
df = pd.DataFrame(raw_data, index = ['Willard Morris', 'Al Jennings', 'Omar Mullins', 'Spencer McDaniel'])
df

#now 'age' will appear at the end of our df
df = df[['favorite_color','grade','name','age']]
df.head()
Exuberant Eland

Python Zmień kolejność kolumny w DataFrame

cols = df.columns.tolist()
cols = cols[-1:] + cols[:-1] #bring last element to 1st position
df = df.reindex(cols, axis=1)
Charming Caracal

Python Więcej kolejności kolumn

In [7]: cols = df.columns.tolist()
In [8]: cols
Out[8]: [0L, 1L, 2L, 3L, 4L, 'mean']

In [12]: cols = cols[-1:] + cols[:-1]

In [13]: cols
Out[13]: ['mean', 0L, 1L, 2L, 3L, 4L]
  
In [14]: df = df[cols] 
Pleasant Panda

Pandas Zmień kolejność kolumny

df[['column2', 'column3', 'column1']]
Gotosan

Pandas Zmień kolejność kolumny

frame = frame[['column I want first', 'column I want second'...etc.]]
Important Impala

Odpowiedzi podobne do “Pandas Zmień kolejność kolumny”

Pytania podobne do “Pandas Zmień kolejność kolumny”

Więcej pokrewnych odpowiedzi na “Pandas Zmień kolejność kolumny” w Python

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

Przeglądaj inne języki kodu