Skip to content
Prev 87020 / 398502 Next

issue with plot (type="h")

Gasper Cankar wrote:
Try ?barplot instead:

bp <- barplot(c(2, 4, 3, 2), ylim = c(0, 5))
axis(side = 1, at = bp, labels = 1:4)
abline(h = 3)
box()

--sundar