How to make a stem and leaf plot in R?

806    Asked by Sunitapandey in Data Science , Asked on Nov 5, 2019
Answered by Sunita pandey

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)



Your Answer

Interviews

Parent Categories