I have a list of integers x1
within 80 and 100.
x=round(runif(100, min=80, max=100))
However when I try to plot the stem and leaf plot. It seems R treats them as 91.0, 81.0 etc..
stem(x)
The desired output should be only one number on the left.
I have tried stem(x1/10)
, stem(x1, scale=1/2/3)
and stem(trunc(x1))
But none of them worked.