RM_duplicate | R Documentation |
RM_duplicate duplicates a results managment within an object.
RM_duplicate(
x = stop("An object with results managment must be provided"),
RM = "RM",
RMnamefrom = 1,
RMnameto = 2
)
x |
The object to duplicate a results managment |
RM |
The name of results managment stored |
RMnamefrom |
The name of the results managment to be duplicated |
RMnameto |
The new name of the results managment |
RM_duplicate duplicates a results managment within an object
The original object with a duplicated results managment.
Marc Girondot marc.girondot@gmail.com
Other Results Managment:
RM_add()
,
RM_delete()
,
RM_get()
,
RM_list()
## Not run:
library("HelpersMG")
# Let an object of class objclass being created
obj <- list(A=100, name="My object")
class(obj) <- "objclass"
# And now I create a RM to this object
obj <- RM_add(x=obj, RMname="NewAnalysis1")
RM_list(obj)
obj <- RM_duplicate(x=obj, RMnamefrom="NewAnalysis1", RMnameto="NewAnalysis2")
RM_list(obj)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.