Skip to content

Commit

Permalink
Typo fix in chapter tidyverse_forcats
Browse files Browse the repository at this point in the history
  • Loading branch information
derbalkon authored Jun 9, 2022
1 parent 52b44e7 commit b513c81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tidyverse_forcats.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ factor(income, levels = c("low", "high", "medium") )
factor(income, levels = c("low", "high") )
```

相比较字符串而言,因子类型更容易处理,因子很多函数会自动的将字符串转换为因子来处理,但事实上,这也会造成,不想当做因子的却又当做了因子的情形,最典型的是在R 4.0之前,`data.frame()``stringsAsFactors`选项,默认将字符串类型转换为因子类型,但这个默认也带来一些不方便,因此在R 4.0之后取消了这个默认。在tidyverse集合里,有专门处理因子的宏包`forcats`,因此,本章将围绕`forcats`宏包讲解如何处理因子类型变量,更多内容可以参考[这里](https://r4ds.had.co.nz/factors.html)
相比较字符串而言,因子类型更容易处理,因此很多函数会自动的将字符串转换为因子来处理,但事实上,这也会造成,不想当做因子的却又当做了因子的情形,最典型的是在R 4.0之前,`data.frame()``stringsAsFactors`选项,默认将字符串类型转换为因子类型,但这个默认也带来一些不方便,因此在R 4.0之后取消了这个默认。在tidyverse集合里,有专门处理因子的宏包`forcats`,因此,本章将围绕`forcats`宏包讲解如何处理因子类型变量,更多内容可以参考[这里](https://r4ds.had.co.nz/factors.html)


```{r forcats-5}
Expand Down

0 comments on commit b513c81

Please sign in to comment.