Without installing the packages, is there a quick way to find out which packages in a given Task View have vignettes or demos associated with them? I've figured out how to tell which packages are in a given Task View from R:
library(ctv)
# get all the available task views
taskviews<-available.views()
# get task view of interest (e.g. "TimeSeries")
tv_of_interest<-taskviews[[which(sapply(taskviews,'[',1)=="TimeSeries")]]
# get all the packages in the task view
pckgs <- tv_of_interest[['packagelist']][1]
Here is what I've tried, but the attempts are not right, as they only consider packages that I already have:
vignette(package= c(pckgs))
browseVignettes(package= c(pckgs))
demo(package=c(pckgs))
I am hoping to avoid scraping, as I have no experience with it, but perhaps it's the only way. Any thoughts?