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

View source: R/RM_get.R

RM_getR Documentation

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

Details

RM_get gets a value in results managment to an object

Value

Return a value in a results managment object

Author(s)

Marc Girondot marc.girondot@gmail.com

See Also

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

Examples

## 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")

## End(Not run)

HelpersMG documentation built on Oct. 5, 2023, 5:08 p.m.