Learn R Programming

HelpersMG (version 5.1)

RM_get: Get a value in a results managment to an object

Description

Return the value valuename of the results managment RMname.

Usage

RM_get(
  x = stop("An object with results managment must be provided"),
  RM = "RM",
  RMname = stop("A results managment name must be provided"),
  valuename = NULL
)

Arguments

x

The object in which to get a result in a results managment

RM

The name of results managment stored

RMname

The name of the results managment to be read

valuename

The name of the value to be read

Value

Return a value in a results managment object

Details

RM_get gets a value in results managment to an object

See Also

Other Results Managment: RM_add(), RM_delete(), RM_duplicate(), RM_list()

Examples

Run this code
# 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_add(x=obj, RMname="NewAnalysis2")
RM_list(obj)
obj <- RM_add(x=obj, RMname="NewAnalysis2", valuename="V1", value=100)
RM_get(x=obj, RMname="NewAnalysis2", valuename="V1")
# }

Run the code above in your browser using DataLab