graph outlier detection

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

showing results for - "graph outlier detection"
Klaus
28 Apr 2020
1#checking for outliers
2
3numerical_features=[feature for feature in df.columns if df[feature].dtypes!='object']
4for feature in numerical_features:
5    if feature=='class(target)':
6        pass
7    else:
8    
9        df[feature].plot.box()
10        plt.xlabel(feature)
11        plt.show()