print contributors to prediction in adaboost model built in R -
i have 'ada' model trained using r package ada, , gives predictions.
> class(model) [1] "ada" > predict(model,testdata,type="prob")[,2] 0.54
however, given row in 'testdata', wondering if there way print out top contributors attributes, affected prediction.
when print out model using modelname$model
, bunch of numbers, i'm not sure of how make sense of it.
Comments
Post a Comment