AddFactor {rrepast} | R Documentation |
Builds up the factor collection.
AddFactor(factors = c(), lambda = "qunif", name, min, max, int = FALSE)
factors |
The current factor collection |
lambda |
The function to apply FUN(p,min,max) |
name |
The name of factor |
min |
The minimun of parameter p |
max |
The maximun of parameter p |
int |
Boolean for truncating the factor value |
The collection of created factors
## Not run: f<- AddFactor(name="Age",min=20,max=60) f<- AddFactor(factors=f, name="Weight",min=50,max=120) ## End(Not run)