在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
大家熟知的画图ggplot2包 library(ggplot2) #查看系统自带的qplot的函数演示 example(qplot) #R语言的基本对象 向量、矩阵、数组、数据框、列表 R语言的变量都是对象(包括函数),都有mode和lenght方法可以调用 #善用向量化的ifelse()函数 #R语言的下标从1开始,与C等语言不同 #R语言的矩阵元素默认按列存储 #善用apply, sapply, lapply(list apply)等函数,其中sapply(代表simplified apply) apply(m, dimcode, f, frags) m:矩阵 dimcode:矩阵的维度编号,1代表行,2代表列 f:应用在行或列上的函数 frags:f的可选参数
下面介绍添加图例函数的参数介绍,方便大家按照需要调整 legend(x, y = NULL, legend, fill = NULL, col = par("col"), border = "black", lty, lwd, pch, angle = 45, density = NULL, bty = "o", bg = par("bg"), box.lwd = par("lwd"), box.lty = par("lty"), box.col = par("fg"), pt.bg = NA, cex = 1, pt.cex = cex, pt.lwd = lwd, xjust = 0, yjust = 1, x.intersp = 1, y.intersp = 1, adj = c(0, 0.5), text.width = NULL, text.col = par("col"), text.font = NULL, merge = do.lines && has.pch, trace = FALSE, plot = TRUE, ncol = 1, horiz = FALSE, title = NULL, inset = 0, xpd, title.col = text.col, title.adj = 0.5, seg.len = 2)
|
请发表评论