在R中同时抓取多个URL

时间:2013-06-14 23:19:57

标签: r

下午好,

感谢您帮我解决这个问题。

我在数据框中有一组> 5000个网址,我有兴趣抓取他们的文字。

目前,我已经找到了如何使用以下代码获取单个网址的文字:

singleURL <- c("http://dailymed.nlm.nih.gov/dailymed/lookup.cfm?ndc=0002-1200&start=1&labeltype=all")
singleText <- readLines(singleURL)

不幸的是,当我尝试使用多个URL扩展它时,它会给我一个“文件错误(con,”r“):无效的'description'参数”消息。这是我一直在尝试的代码:

multipleURL <- c("http://dailymed.nlm.nih.gov/dailymed/lookup.cfm?ndc=0002-1200&start=1&labeltype=all", "http://dailymed.nlm.nih.gov/dailymed/lookup.cfm?ndc=0002-1407&start=1&labeltype=all", "http://dailymed.nlm.nih.gov/dailymed/lookup.cfm?ndc=0002-1975&start=1&labeltype=all")
multipleText <- readLines(multipleURL)

如果有人有任何建议,我将非常感激。

非常感谢,

克里斯

0 个答案:

没有答案