I am developing an R package, and I have the following questions:
- I use the roxygen2 package for the development, specifically I use roxygenize("pkg_Name") in R before running R CMD check pkg_Name in the shell mode. I found the time spent on checking the package so long, and wonder if there is any way to "cache" the unchanged results? I often made minor changes for my R functions being developed, and I don't wanna spend that long time for running R CMD check...
Thank you so much!