R成精系列-R语言技能升级路径

数据处理:dataframe--data.table
基础字符串处理函数:——stringr
绘图系统:plot——ggplot2
代码风格:函数嵌套——管道函数(%>%
列表处理:list(自建循环)——rlist
json处理:Rjson+RJSONIO——jsonlite
数据抓取:RCurl+XML——httr+xml2
循环任务:for/while——apply——plyr::a_ply——并行运算(foreach、parallel)
切片索引:subset——dplyr::select+filter
聚合运算:aggregate——plyr::ddply+mutate——dplyr::group_by+summarize
数据联结:merge——plyr::join——dplyr::left/right/inner/outer_join
数据塑型:plyr::melt/dcast——tidyr::gather/spread

你可能感兴趣的:(R成精系列-R语言技能升级路径)