R语言使用的一些技巧

1、 解决R语言临时文件目录的问题(tempdir、tempfile)
2、不同长度数据合并1
不同长度数据合并2
3、在R语言中将变量名转化为同名字符串的函数

rename<-function(df){
  prefix<-substitute(df)#substitute 是也
  colName<-colnames(df)
  new_name<-sapply(colName, function(x){return(paste0(prefix,"_",x))})
  colnames(df)<-new_name
  return(df)
}

4、tidyr与ggplot2联用
数据清洗之dplyr
tidyr

你可能感兴趣的:(R语言使用的一些技巧)