Box Plot Example

set.seed(123)
n1 <- rnorm(1000, 5, 1)
n2 <- rnorm(1000, 10, 1)

v <- c(n1,n2)

hist(v)

boxplot(v, horizontal=T)