Hi,
I was trying to plot a basic histogram in R using the hist() function, but even though the plot is correct, I can't seem to find how to add a name or label under each bin.
hist(gdppc$GDPPC,freq=TRUE, breaks=9)
I want each bin (rectangle) to have one number below each, instead of just three general ones (5000,10000,15000), because it does not even fit the plot that way.
Very thankful.