【发布时间】:2018-09-13 15:03:41
【问题描述】:
如何导入写入乌尔都语的 CSV 文件的数据集?我试着做 以这种方式,但得到错误。我做错了吗?
代码:
library(rio)
Sys.setlocale("LC_ALL","Urdu")
fil <- read.csv("D:/PycharmProjects/shiny-examples-master/shiny-examples-master/Data_set.csv",encoding='UTF-8')
Data_set.csv:
Reg No. address
13 Nazim ud Din Road, F-11, ICT, دارالحکومت اسلام آباد, 44000, پاکستان
45 Street 34, F-7/1, F-7, ICT, دارالحکومت اسلام آباد, 44000, پاکستان
5564 Lane 11, DHA Phase II, ICT, دارالحکومت اسلام آباد, 44000, پاکستان
错误:
Warning messages:
1: In read.table(file = file, header = header, sep = sep, quote = quote, :
line 1 appears to contain embedded nulls
2: In read.table(file = file, header = header, sep = sep, quote = quote, :
line 2 appears to contain embedded nulls
3: In read.table(file = file, header = header, sep = sep, quote = quote, :
line 3 appears to contain embedded nulls
4: In read.table(file = file, header = header, sep = sep, quote = quote, :
line 4 appears to contain embedded nulls
5: In read.table(file = file, header = header, sep = sep, quote = quote, :
line 5 appears to contain embedded nulls
6: In read.table(file = file, header = header, sep = sep, quote = quote, :
incomplete final line found by readTableHeader on 'D:/PycharmProjects/shiny-examples-master/shiny-examples-master/12000.csv'
【问题讨论】:
-
您的
csv制表符是否分隔?我只看到两个标题,地址有几个逗号。