How can I remove the borders around bars in R, so that only the fill remains?
Instead of this:
You can set this parameter as an extra option for hist, as lty="blank":
hist
lty="blank"
hist(rnorm(100), lty="blank", col="hotpink")