Answers for "pandas new column average of"

11

calculating mean for pandas column

df["columnName"].mean()
Posted by: Guest on December-10-2020
0

pandas new column average of other columns

col = df.loc[: , "salary_1":"salary_3"]
df['salary_mean'] = col.mean(axis=1)
Posted by: Guest on March-26-2021

Code answers related to "pandas new column average of"

Python Answers by Framework

Browse Popular Code Answers by Language