R绘图基础(4)符号与线形

画图中的符号由pch参数来控制。其描边色由col控制,填充色由bg控制。

  1. > pchShow <-
  2. + function(extras = c("*",".", "o","O","0","+","-","|","%","#"),
  3. + cex = 3, ## good for both .Device=="postscript" and "x11"
  4. + col = "red3", bg = "gold", coltext = "brown", cextext = 1.2,
  5. + main = paste("plot symbols : points (... pch = *, cex =",
  6. + cex,")"))
  7. + {
  8. + nex <- length(extras)
  9. + np <- 26 + nex
  10. + ipch <- 0:(np-1)
  11. + k <- floor(sqrt(np))
  12. + dd <- c(-1,1)/2
  13. + rx <- dd + range(ix <- ipch %/% k)
  14. + ry <- dd + range(iy <- 3 + (k-1)- ipch %% k)
  15. + pch <- as.list(ipch) # list with integers & strings
  16. + if(nex > 0) pch[26+ 1:nex] <- as.list(extras)
  17. + plot(rx, ry, type="n", axes = FALSE, xlab = "", ylab = "",
  18. + main = main)
  19. + abline(v = ix, h = iy, col = "lightgray", lty = "dotted")
  20. + for(i in 1:np) {
  21. + pc <- pch[[i]]
  22. + ## 'col' symbols with a 'bg'-colored interior (where available) :
  23. + points(ix[i], iy[i], pch = pc, col = col, bg = bg, cex = cex)
  24. + if(cextext > 0)
  25. + text(ix[i] - 0.3, iy[i], pc, col = coltext, cex = cextext)
  26. + }
  27. + }
  28. >
  29. > pchShow()

R绘图基础(4)符号与线形-图片1

符号

线形主要由lty和lwd来控制。lty: line type. lwd: line width.顾名思意,lty控制线的形状,而lwd控制线的粗细,默认值为1。设计成2表示两倍线宽。

R绘图基础(4)符号与线形-图片2

线形

发表评论

匿名网友

拖动滑块以完成验证
加载中...