result {struct} | R Documentation |
Returns the results of an iterator. This is used to control model flow in a
similar way to predict
for model and model_seq objects.
result(M)
M |
an iterator object |
the returned output varies with the algorithm implemented
D = iris_DatasetExperiment() # get some data MET = metric() # use a metric I = example_iterator() # initialise iterator models(I) = example_model() # set the model I = run(I,D,MET) # run result(I)