replace column values pandas
df['column'] = df['column'].str.replace(',','-')
df
replace column values pandas
df['column'] = df['column'].str.replace(',','-')
df
replace values of pandas column
df.loc[df['column'] == 'column_value', 'column'] = 'new_column_value'
how to change the columns of a dataframe in python
new_columns = {"col1": "1st", "col2": "2nd"}
df_new = df.rename(columns=new_columns)
"""
col1 | col2 | col3 1st | 2nd | col3
a | d | g a | d | g
b | e | h => b | e | h
c | f | i c | f | i
"""
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us