问题阅读下载的CSV

时间:2013-02-23 08:30:55

标签: r csv https

我正在尝试从我的数据库在线下载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" 

0 个答案:

没有答案