我正在尝试从我的在线数据库中下载 CSV,它似乎正在工作,
tempCSV <- postForm(myDB_URL, .params=myParameters)
但是当我尝试读取文件时,
> dat <- read.csv(textConnection(tempCSV))
我收到此错误:
Error in textConnection(tempCSV) : invalid 'text' argument
我也试过这个(如果我在这里完全抓住吸管,请不要笑,这是周五晚上的凌晨 2 点 19 分)
> dat <- read.csv(tempCSV)
出现此错误:
Error in read.table(file = file, header = header, sep = sep, quote = quote, :
'file' must be a character string or connection
作为参考,这是数据的实际样子:
> tempCSV[1:20]
[1] 43 69 74 79 73 70 61 6e 20 43 6c 61 73 73 20 2d 20 46 69 6e
RStudio 说它是原始的[225758]
如果我打印整个内容会发生以下情况,如果这有帮助的话:
> tempCSV
...
[ reached getOption("max.print") -- omitted 215758 entries ]
attr(,"Content-Type")
"application/x-comma-separated-values"