“Pandas benennen die Spalte nach Dictionary um” Code-Antworten

Pandas benennen Spaltenwerte Dictionary um

df['col1'].map(di)       # note: if the dictionary does not exhaustively map all
                         # entries then non-matched entries are changed to NaNs
Calm Crab

Pandas benennen die Spalte nach Dictionary um

# import pandas
import pandas as pd
 
# create data frame
df = pd.DataFrame({'First Name': ["Mukul", "Rohan", "Mayank",
                                  "Vedansh", "Krishna"],
                    
                   'Location': ["Saharanpur", "Rampur", "Agra",
                                "Saharanpur", "Noida"],
                    
                   'Pay': [56000.0, 55000.0, 61000.0, 45000.0, 62000.0]})
 
# print original data frame
display(df)
 
# create a dictionary
# key = old name
# value = new name
dict = {'First Name': 'Name',
        'Location': 'City',
        'Pay': 'Salary'}
 
# call rename () method
df.rename(columns=dict,
          inplace=True)
 
# print Data frame after rename columns
display(df)
Nutty Nightingale

Pandas benennen Spaltenwerte Dictionary um

df['col1'].map(di).fillna(df['col1'])
Calm Crab

Ähnliche Antworten wie “Pandas benennen die Spalte nach Dictionary um”

Fragen ähnlich wie “Pandas benennen die Spalte nach Dictionary um”

Weitere verwandte Antworten zu “Pandas benennen die Spalte nach Dictionary um” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen