码迷,mamicode.com
首页 > 编程语言 > 详细

R语言:读入txt文件中文文本出现乱码解决方案

时间:2017-05-25 11:55:44      阅读:1407      评论:0      收藏:0      [点我收藏+]

标签:乱码   style   pac   spec   class   文件中   lib   nbsp   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文件中文文本出现乱码解决方案

标签:乱码   style   pac   spec   class   文件中   lib   nbsp   txt   

原文地址:http://www.cnblogs.com/hahaxzy9500/p/6902321.html

(1)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!