You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"To Calculate the skewness of a given data For normal distribute data skewness = 0 , Skewness > 0 more weight the left tail and less weight in right tail "
if(dataset[col].dtype == 'int64' or dataset[col].dtype == 'float64'):
return st.skew(dataset[col])
def kurtosis(dataset,col,ty):
"To calculate Kurtosis of a data set ty can be fisher or pearson"
if (dataset[col].dtype == 'int64' or dataset[col].dtype == 'float64'):