6. Gráficos - JulTob/R GitHub Wiki

Histográmas

datos<-c(1,2,2,3,3,3,3,3,3,4,4,5,5,6,6,7,2,1)
hist(datos)

Stem

> stem(datos)

  The decimal point is at the |

  0 | 00
  2 | 000000000
  4 | 0000
  6 | 000

BoxPlot

boxplot(datos, col=2)