studio - ¿Cómo eliminar los valores atípicos en boxplot en R?
leyendas en r (1)
Ver ?boxplot
para toda la ayuda que necesita.
outline: if ‘outline’ is not true, the outliers are not drawn (as
points whereas S+ uses lines).
boxplot(x,horizontal=TRUE,axes=FALSE,outline=FALSE)
Y para ampliar el rango de los bigotes y suprimir los valores atípicos dentro de este rango:
range: this determines how far the plot whiskers extend out from the
box. If ‘range’ is positive, the whiskers extend to the most
extreme data point which is no more than ‘range’ times the
interquartile range from the box. A value of zero causes the
whiskers to extend to the data extremes.
# change the value of range to change the whisker length
boxplot(x,horizontal=TRUE,axes=FALSE,range=2)
Posible duplicado:
Cambio de la regla de valor atípico en un diagrama de caja
Necesito visualizar mi resultado usando box-plot.
x<-rnorm(10000)
boxplot(x,horizontal=TRUE,axes=FALSE)
¿Cómo puedo filtrar los valores atípicos durante la visualización?
(1) Para que pueda tener una imagen completa en la pantalla sin tener valores atípicos feos.
http://postimage.org/image/szzbez0h1/a610666d/
(2) ¿Hay alguna forma de mostrar valores atípicos hasta cierto rango? http://postimage.org/image/np28oee0b/8251d102/
Saludos