Answers for "log transformation"

0

log transformation

# dataframe: df
# feature with outliers: price
# Apply Log Transformation:

df['price'] = np.log(df['price'])
Posted by: Guest on March-31-2021

Code answers related to "log transformation"

Browse Popular Code Answers by Language