maintain.packages {mvbutils} | R Documentation |
Set up packages for live-editing.
# In your .First, after library( mvbutils) maintain.packages(..., character.only = FALSE)
... |
names of your packages, unquoted unless... |
character.only |
... is TRUE |
copious details needed
How to set up a package from scratch
How to convert an existing package so it can be live-edited etc
fixr
, pre.install
, patch.installed
# whatever they are... ## Not run: # In your .First: library( mvbutils) maintain.packages( myfirstpack, mysecondpack, mythirdpack) # or... live.edit.list <- c( 'myfirstpack', 'mysecondpack', 'mythirdpack') maintain.packages( live.edit.list, character.only=TRUE) ## End(Not run)