trainMOA.MOA_regressor | R Documentation |
Train a MOA regressor (e.g. a FIMTDD) on a datastream
## S3 method for class 'MOA_regressor' trainMOA(model, formula, data, subset, na.action = na.exclude, transFUN = identity, chunksize = 1000, reset = TRUE, trace = FALSE, options = list(maxruntime = +Inf), ...)
model |
an object of class |
formula |
a symbolic description of the model to be fit. |
data |
an object of class |
subset |
an optional vector specifying a subset of observations to be used in the fitting process. |
na.action |
a function which indicates what should happen when the data contain |
transFUN |
a function which is used after obtaining |
chunksize |
the number of rows to obtain from the |
reset |
logical indicating to reset the |
trace |
logical, indicating to show information on how many datastream chunks are already processed
as a |
options |
a names list of further options. Currently not used. |
... |
other arguments, currently not used yet |
An object of class MOA_trainedmodel which is a list with elements
model: the updated supplied model
object of class MOA_regressor
call: the matched call
na.action: the value of na.action
terms: the terms
in the model
transFUN: the transFUN argument
MOA_regressor
, datastream_file
, datastream_dataframe
,
datastream_matrix
, datastream_ffdf
, datastream
,
predict.MOA_trainedmodel
mymodel <- MOA_regressor(model = "FIMTDD") mymodel data(iris) iris <- factorise(iris) irisdatastream <- datastream_dataframe(data=iris) irisdatastream$get_points(3) ## Train the model mytrainedmodel <- trainMOA(model = mymodel, Sepal.Length ~ Petal.Length + Species, data = irisdatastream) mytrainedmodel$model irisdatastream$reset() mytrainedmodel <- trainMOA(model = mytrainedmodel$model, Sepal.Length ~ Petal.Length + Species, data = irisdatastream, chunksize = 10, reset=FALSE, trace=TRUE) mytrainedmodel$model
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.