fix_filenames {learningr} | R Documentation |
Some filenames have been altered in order to comply with portability requirements on CRAN. This function converts the filenames between the CRAN forms and the book forms.
fix_filenames(x = c("tobook", "tocran"),
dir = system.file("extdata", packages = "learningr"))
x |
Either “tocran” or “tobook”. |
dir |
Directory containing the files. |
A logical vector of length 4, TRUE
for each file
whose name was changed.
## Not run:
#To convert the files to the book form, use:
fix_filenames("tobook")
#The files were converted to CRAN form using:
fix_filenames("tocran", "learningr/inst/extdata")
## End(Not run)