I'm drawing a simple barplot with thick bar borders:
par(lwd=3)
barplot(c(6,7))
arrows(0,0,10,0,lwd=1)
The borders stick out slightly over the x-axis, which looks bad.
Is there any way to draw the border within each bar, rather than around it?
|
|
The best I can think of is to hack something together by hand by setting
This is far from ideal. The coordinates used in |
|||
|
|
My suggestion after failing to find a clip()-ping or an easy "inner border" answer is this suggestion:
It has the advantage that it doesn't clip the top of the higher bars. Bet you didn't notice that. I didn't notice it until I used lwd=10. |
|||||||
|