R语言:读入txt文件中文文本出现乱码解决方案
Posted hahaxzy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了R语言:读入txt文件中文文本出现乱码解决方案相关的知识,希望对你有一定的参考价值。
下载安装 readr
因为使用内置函数 read.table() 读入应该是格式不符合要求会报错
1 library(readr) 2 help(package="readr")
可以使用里面的 read_table(),下面来检测一下
1 library(dplyr) 2 read.table(‘E:\\forpython\\chapters\\chap1.txt‘) %>% head() 3 read_table(‘E:\\forpython\\chapters\\chap1.txt‘) %>% head()
1 > read.table(‘E:\\forpython\\chapters\\chap1.txt‘) %>% head() 2 Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : 3 line 1 did not have 2 elements 4 > read_table(‘E:\\forpython\\chapters\\chap1.txt‘) %>% head() 5 Parsed with column specification: 6 cols( 7 `第一回 甄士隐梦幻识通灵 贾雨村风尘怀闺秀` = col_character() 8 ) 9 # A tibble: 6 x 1 10 `第一回 甄士隐梦幻识通灵 贾雨村风尘怀闺秀` 11 <chr> 12 1 列位看官:你道此书从何而来?说起根由,虽近荒唐,细按则深有趣味。待在下将此来历注明,方使阅者了然不惑
以上是关于R语言:读入txt文件中文文本出现乱码解决方案的主要内容,如果未能解决你的问题,请参考以下文章