Description Usage Arguments Value Examples
View source: R/rip_freeze_packrat.R
Generate a requirements file from a packrat.lock
file
1 2 | rip_freeze_packrat(packrat_lock_path = "packrat/packrat.lock",
output_path = "requirements.txt", eq_sym = ">=", append = TRUE)
|
packrat_lock_path |
Path to |
output_path |
String indicating where to write resulting requirements file to. |
eq_sym |
The equality symbol to be used when writing requirements (i.e. package>=1.0.0).
Use |
append |
Should requirements from |
Nothing is returned. Results are written to output_path
1 2 3 4 5 6 | ## Not run:
rip_freeze_packrat(output_path = "my_requirements.txt")
rip_freeze_packrat(output_path = "versionless_requirements.txt", eq_sym = NULL)
rip_freeze_packrat(output_path = "overwrite_requirements.txt", append = FALSE)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.