learnAlgo: Create an instance of the ['LearnAlgo'] class

Description Usage Arguments Value Author(s) Examples

View source: R/LearnAlgo.R

Description

There is two algorithms and two stopping rules possibles for a learning algorithm.

The epsilon value is not used when the algorithm is "Simul". It is worth noting that if there is no missing values, the method should be "Impute" and nbIteration should be set to 1!

Usage

1
learnAlgo(algo = "Simul", nbIteration = 200, epsilon = 1e-07)

Arguments

algo

character string with the estimation algorithm. Possible values are "Simul", "Impute". Default value is "Simul".

nbIteration

Integer defining the maximal number of iterations. Default value is 200.

epsilon

Real defining the epsilon value for the algorithm. Not used by the "Simul" algorithm. Default value is 1.e-7.

Value

a [LearnAlgo] object

Author(s)

Serge Iovleff

Examples

1
2
3
learnAlgo()
learnAlgo(algo="simul", nbIteration=50)
learnAlgo(algo="impute", epsilon = 1e-06)

MixAll documentation built on Sept. 7, 2019, 3 a.m.