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)

Example output

Loading required package: discretization
Loading required package: functional
Loading required package: foreign
Loading required package: stringr
  [1] 1 3 3 3 1 1 1 1 1 3 1 1 3 3 1 1 1 1 1 1 1 1 1 3 1 3 1 1 1 3 3 1 1 1 3 3 1
 [38] 1 3 1 1 1 3 1 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
 [75] 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
[112] 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
[149] 1 1

AnDE documentation built on May 2, 2019, 3:20 p.m.

Related to predict.AODE in AnDE...