
2 States
Confusingly R packages can be in different states
Files change location depending upon state - see here
Source - the files you code - what’s in your new folder / GitHub repo
(Source) bundled - the
.tar.gzfile of your source files excluding those in.Rbuildignore- what you need to submit to CRANBinary - the ‘compiled’ version of the bundled package compressed (
.zipon Windows)the helpfiles converted from
.Rdto.htmlVignettes compiled to
.htmlany C code etc. will have been compiled
/Rno longer contains.Rfiles, now contains 3 files that store the parsed functions in an efficient file format - result of loading all the R code and then saving the functions withsave()
Installed - the uncompressed zip file in the correct library folder
In memory - the binary, installed package loaded via
library()