how to educe the effect of outlier a outliner in deta set withy std in python code example
Example: outliers removal
#Removing outliers first then skewness
from scipy.stats import zscore
z=abs(zscore(df))
print(z.shape)
df=df[(z<3).all(axis=1)]
df.shape