graph skewness detection

Solutions on MaxInterview for graph skewness detection by the best coders in the world

showing results for - "graph skewness detection"
Ilaria
17 Mar 2018
1#checking for skewness
2numerical_features=[feature for feature in df.columns if df[feature].dtypes!='object']
3for feature in numerical_features:
4    if feature=='class(target)':
5        pass
6    else:
7    
8        
9        df[feature].hist()
10        plt.xlabel(feature)
11        plt.show()