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