“Zmień nazwę kolumny DF” Kod odpowiedzi

Zmień nazwę kolumn pandy

df.rename(columns={'oldName1': 'newName1',
                   'oldName2': 'newName2'},
          inplace=True, errors='raise')
# Make sure you set inplace to True if you want the change
# to be applied to the dataframe
Charred Dolphin

Zmień nazwę kolumny DF

import pandas as pd
data = pd.read_csv(file)
data.rename(columns={'original':'new_name'}, inplace=True)
Cozy Dev

Zmień nazwę kolumny DataFrame Pandas

>>> df = pd.DataFrame({"A": [1, 2, 3], "B": [4, 5, 6]})
>>> df.rename(columns={"A": "a", "B": "c"})
   a  c
0  1  4
1  2  5
2  3  6
Lonely Leopard

Zmień nazwę Python kolumny DataFrame

#suppy as dict the column name to replace
df1 = df.rename(columns={'Name': 'EmpName'})
print(df1)
Talented Tarantula

Zmień nazwę kolumny w DataFrame

df.rename({"current": "updated"}, axis=1, inplace=True)
print(df.dtypes)
rudythealchemist

Zmień nazwę pand kolumny

df_new = df.rename(columns={'A': 'a'}, index={'ONE': 'one'})
print(df_new)
#         a   B   C
# one    11  12  13
# TWO    21  22  23
# THREE  31  32  33

print(df)
#         A   B   C
# ONE    11  12  13
# TWO    21  22  23
# THREE  31  32  33
Terrible Turtle

Odpowiedzi podobne do “Zmień nazwę kolumny DF”

Pytania podobne do “Zmień nazwę kolumny DF”

Więcej pokrewnych odpowiedzi na “Zmień nazwę kolumny DF” w Python

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

Przeglądaj inne języki kodu