首页 > 代码库 > R语言:读入txt文件中文文本出现乱码解决方案
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文件中文文本出现乱码解决方案
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。