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)?
Show older comments
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'.
Accepted Answer
More Answers (0)
Categories
Find more on Gaussian Process Regression in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!