pandas apply function to every row
# Get rid of $ and , in the SAL-RATE, then convert it to a float
def money_to_float(money_str):
return float(money_str.replace("$","").replace(",",""))
df['SAL-RATE'].apply(money_to_float)
pandas apply function to every row
# Get rid of $ and , in the SAL-RATE, then convert it to a float
def money_to_float(money_str):
return float(money_str.replace("$","").replace(",",""))
df['SAL-RATE'].apply(money_to_float)
python print every row of dataframe
df = pandas.read_csv("data.csv")
pandas.set_option('display.max_rows', df.shape[0]+1)
print(df)
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