I'm working on a package that allows importing the IPUMS data into R and I want to include vignettes that are based on our tutorials for other statistical packages. The one issue is that these tutorials use datasets that are too large to fit on CRAN.
It seems like it is possible to submit pre-compiled vignettes to CRAN (here's how to do with R.rsp). This way I can have the data in a separate github package, but won't have to include the github package in the Suggests field. This avoids a R CMD Check note about a non-CRAN package dependency, which wouldn't really be the end of the world, but I'd still like to avoid.
Since I've only used devtools to build my vignettes in the past, I'm blissfully ignorant of the finer details of how the vignette gets made. Is this kind of approach possible with knitr and devtools?