predict.galm: Make predictions using a galm model

Usage Arguments Examples

Usage

1
predict.galm(obj, newx, ...)

Arguments

obj
newx
...

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function (obj, newx, ...) 
{
    data = newx[, obj[["vars"]]]
    out = predict(obj = obj[["model"]], data = data)
    out
  }

wrbrooks/genetic documentation built on May 4, 2019, 11:59 a.m.