¿Fue útil?

Pregunta

How to display mean inside boxplot created by using boxplot function in R?

R ProgrammingServer Side ProgrammingProgramming

A boxplot shows the median as a measure of center along with other values but we might want to compare the means as well. Therefore, showing mean with a point is likely to be preferred if we want to compare many boxplots. This can be done by using points(mean(“Vector_name”)), if we are plotting the columns of an R data frame then we will reference them instead of vector name.

Example

Consider the below data and the boxplot −

 Live Demo

x<-runif(100,2,5)
boxplot(x)

Output

Adding mean point to the boxplot −

Example

points(mean(x),col="red")

Output

raja
Published on 08-Sep-2020 18:00:54
Advertisements
¿Fue útil?
No afiliado a Tutorialspoint
scroll top