Generate a list containing the arguments to be passed to the underlying model building function. Most interaction with AbstractModel-class
is done via ab.create, ab.model and ab.predict, however it may be useful for debugging purposes to call this function directly.
ab.arglist(ab, X, Y)
An object of class AbstractModel-class
The X
values. Will be passed through xtrans
.
The Y
values. Will be passed through ytrans
.
Returns a list of values that will be passed to the underlying model function
Both X
and Y
must be present. They will be passed through the xtransfrom and ytransform functions respectively, which default to a passthrough. If a formula is to be used, the X
and Y
data will be combined via cbind
.