Skip to content
Prev 70520 / 398525 Next

Round a line

Luis Ridao Cruz wrote:

            
Well, round is the default! You have to zoom in or make even thicker 
lines. Hence you might want to try out the folowing to see differences:

   x <- 1:10
   par(mfrow = c(1, 2))
   plot(x, sin(x), type="l", lwd=10)
   par(ljoin="mitre", lend="butt")
   plot(x, sin(x), type="l", lwd=10)

Uwe Ligges