“Ganti nama kolom DF” Kode Jawaban

Ganti nama kolom panda

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

Ganti nama kolom DF

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

Pandas DataFrame Column Rename

>>> 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

Ganti nama satu kolom DataFrame Python

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

ganti nama kolom di dataaframe

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

Ganti nama kolom panda

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

Jawaban yang mirip dengan “Ganti nama kolom DF”

Pertanyaan yang mirip dengan “Ganti nama kolom DF”

Lebih banyak jawaban terkait untuk “Ganti nama kolom DF” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya