setwd("D:/RBook/")
> BFCases <- read.table(file="BirdFluCases.txt", header = TRUE)
Error in make.names(col.names, unique = TRUE) : 多字节字符串8有错
> help("read.table")
> BFCases <- read.table(file="BirdFluCases.txt", header = TRUE,sep = "")
Error in make.names(col.names, unique = TRUE) : 多字节字符串8有错
r语言 多字节字符串8有错 怎么解决?
- 写回答
- 好问题 0 提建议
- 关注问题
- 邀请回答
-
1条回答 默认 最新
AA-老高(接毕设) 2024-07-08 09:56关注BFCases <- read.table(file = "BirdFluCases.txt", header = TRUE, fileEncoding = "UTF-8")
解决 无用评论 打赏 举报