How can I compute a confidence interval for a predicted value computed using EVAL command and a classification and regression tree in Statistics Toolbox 6.1 (R2007b)?
Afficher commentaires plus anciens
I generate a classification and regression tree and evaluate a new data point with EVAL command:
load fisheriris;
t = classregtree(meas,species,'names',{'SL' 'SW' 'PL' 'PW'});
sfit=eval(t,meas(1,:)+rand(1,4))
I would like to compute the confidence level for the variable 'sfit'.
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Discriminant Analysis dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!