Remove borders from bars in histogram in R
How can I remove the borders around bars in R, so that only the fill remains?
Instead of this:
I want this:
I do not want to color the borders!
您可以将此参数设置为hist
的额外选项,如lty="blank"
:
hist(rnorm(100), lty="blank", col="hotpink")
链接地址: http://www.djcxy.com/p/82762.html
上一篇: 如何在iOS视频播放器中播放webm文件
下一篇: 在直方图中删除边框