Barplot

a <- round(runif(100)*10)
y <- table(a)
x <- barplot(y,ylim=c(0,max(y)*1.1))
text(x,y,labels=y,pos=3)
Homepage
Comments

Hide Comments