Rstudio shiny rmarkdown tidyverse 相关网页

版权声明:欢迎交流:[email protected] https://blog.csdn.net/luo617/article/details/82432196

Rstudio开源的packages :https://www.rstudio.com/products/rpackages/

shiny 项目地址: https://shiny.rstudio.com/ 用于构建交互式web运用
htmlwidgets http://www.htmlwidgets.org/

tidyverse 项目地址: https://www.tidyverse.org/ 集合了多个包在一起
tidyr : 整理数据
readr : 快速读取文件,表格、log等
readxl : 读取Excel
lubridate : 处理日期
devtools : 开发管理,安装github上的R包
magrittr : 管道操作符
packrat : 依赖项管理工具,让你的R项目更便携可再生
stringr : 字符串操作
dplyr : 数据处理,转换
ggplot2: 可视化

btoom : 整理R内置函数的输出如lm glm
https://cran.r-project.org/web/packages/broom/vignettes/broom.html

roxygen2 : 便于生成函数说明,Rd文件
https://cran.r-project.org/web/packages/roxygen2/vignettes/roxygen2.html

tibble : tbl_df类似datafram格式
http://tibble.tidyverse.org/

feather : 用二进制存储文件,R与python包,保存的二进制文件读写很快,R与python上的代码也很类似 https://blog.rstudio.com/2016/03/29/feather/

forcats : 辅助重新排列因子 https://blog.rstudio.com/2016/08/31/forcats-0-1-0/
hms : 用于存储时间或时间段简化数据交换 https://github.com/tidyverse/hms
plumber : 将现有的R代码转化为webAPI https://github.com/trestletech/plumber
testthat : 测试代码 https://github.com/hadley/testthat http://testthat.r-lib.org/
purrr : 函数式程序设计工具 http://purrr.tidyverse.org/

猜你喜欢

转载自blog.csdn.net/luo617/article/details/82432196