predict.galogistic: Make predictions using a galogistic model

Usage Arguments Examples

View source: R/predict.galogistic.R

Usage

1
predict.galogistic(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/galogistic documentation built on May 4, 2019, 11:58 a.m.