store.nb.predict: Store predicted values generated in the nb function

store.nb.predictR Documentation

Store predicted values generated in the nb function

Description

Store predicted values generated in the nb function

Usage

## S3 method for class 'nb.predict'
store(dataset, object, name = NULL, ...)

Arguments

dataset

Dataset to add predictions to

object

Return value from model function

name

Variable name(s) assigned to predicted values. If empty, the levels of the response variable will be used

...

Additional arguments

Details

See https://radiant-rstats.github.io/docs/model/nb.html for an example in Radiant

Examples

result <- nb(titanic, rvar = "survived", evar = c("pclass", "sex", "age"))
pred <- predict(result, pred_data = titanic)
titanic <- store(titanic, pred, name = c("Yes", "No"))


radiant.model documentation built on Oct. 16, 2023, 9:06 a.m.