Use UTF-8 for character encoding in a data frame
fread
from data.table could not recognize the encoding
and return the correct form, this could be unconvenient for text mining tasks. The
utf8-encoding
could use "UTF-8" as the encoding to override the current
encoding of characters in a data frame.
utf8_encoding(.data, .cols)
.data |
A data.frame. |
.cols |
The columns you want to convert, usually a character column. |
A data.table with characters in UTF-8 encoding
iris %>% as.data.table() %>% utf8_encoding(Species) # could also use `is.factor`
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.