Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我通过循环几个变量来访问网页以插入 URL
偶尔会出现404错误。
如何为这些页面插入某种捕获以避免破坏代码。我目前使用 XML 包,但如果合适当然可以加载其他包
TIA
大多数时候我使用RCurl::url.exists(). 如果你有一个包含所有 url 的列表或数据框,你可以试试这个:
RCurl::url.exists()
map(p, ~ifelse(RCurl::url.exists(.), ., NA))
!