predict.AODE: predict

Description Usage Arguments Details Value Author(s) Examples

View source: R/aode.R

Description

This is a generic function. This function predicts the class of the test data and returns a vector of predicted values.

Usage

1
2
  ## S3 method for class 'AODE'
 predict(object, test, ...)

Arguments

object

object of class AODE

test

test data frame. If the training data was discretized, then the same cut points shall be used to discretize the test data. So obviously if the training was not discretized, test data should also not be discretized.

...

extra arguments which might be needed in future

Details

Written in line with the E1071 package.

Value

class vector containing the predicted class distribution of the test data

Author(s)

sai teja ranuva

Examples

1
2
3
data<-iris
ode<-aode(data)
predict(ode,iris)

saitejar/AnDE documentation built on May 29, 2019, 12:59 p.m.