output_list {struct}R Documentation

output list

Description

get/set a named list of outputs and their current value for an object

Usage

output_list(obj)

output_list(obj) <- value

## S4 method for signature 'struct_class'
output_list(obj)

## S4 replacement method for signature 'struct_class,list'
output_list(obj) <- value

Arguments

obj

An object derived from struct_class

value

A named list of outputs and corresponding values

Value

A named list of outputs and corresponding values

struct object

Methods (by class)

Examples

M = example_model()
L = output_list(M)
M = example_model()
output_list(M) = list('result_1' = DatasetExperiment(),'result_2' = DatasetExperiment())

[Package struct version 1.2.0 Index]