Posts by Mateus Guimarães • 11 points
1 post
-
1
votes1
answer37
viewsQ: Removal of automated outilers
I need to remove outliers from a database in a "manual" way, I would use the following command: a=X Q1<-quantile(X,0.25) Q3<-quantile(X,0.75) IQR<-Q3-Q1 lim_inf=Q1-1.5*IQR…