R语言tidyverse
Posted ezhou
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了R语言tidyverse相关的知识,希望对你有一定的参考价值。
tidyverse library把data.frame拓展tibble、读取数据readr、清洗数据tidyr、文本处理stringr、加工数据dplyr、画图ggplot2等library打包在一起。读取数据readxl、时间处理lubridate另外加载。
The goal of tidyr is to help you create tidy data.宽表变长表,分列,填充缺失值,替换缺失值。
The readxl package makes it easy to get data out of Excel and into R.如果是csv格式,用UTF-8编码。
dplyr is a grammar of data manipulation, providing a consistent set of verbs that help you solve the most common data manipulation challenges.选择、筛选、排序,分组统计,各种join。
The stringr package provide a cohesive set of functions designed to make working with strings as easy as possible.
学习R语言,其一从base入手,基础扎实,六个月可以干活,其二从tidyverse入手,效率高,四个月可以干活。
以上是关于R语言tidyverse的主要内容,如果未能解决你的问题,请参考以下文章