r-使用readr :: read_csv()读取连接

时间:2018-09-13 15:02:54

标签: r connection readr

尝试使用readr::read_csv()通过连接读取文件时,出现错误。

已建立连接:

con <- file(description = "A FILE", open = "r")

之后,可能会发生以下情况:

df <- read.table(con, header = T, fill = T, sep = ",") 

但是尝试通过以下方式读取连接:

df <- readr::read_csv(con)

返回:

Error in read_connection_(con) : 
  Evaluation error: can only read from a binary connection.

0 个答案:

没有答案