How to make a stem and leaf plot in R?
To make a stem and leaf plot let us create some vectors
x <- c(60,85,72,59,37,75,93,7,98,63,41,90,5,17,97)
Now to create a stem and leaf plot, we can use the following
stem(x)