randomForestCI icon indicating copy to clipboard operation
randomForestCI copied to clipboard

This package is DEPRECATED. Please use the packages `grf` or `ranger` instead, which have built-in confidence intervals.

Results 5 randomForestCI issues
Sort by recently updated
recently updated
newest added

I would like to get the standard error of predictions from a random forest trained on `y=log(x+1)` target. The `var.hat` returned by _randomForestInfJack_ is the variance of `y`, so `se=sqrt(var.hat)`....

Hello, I am using your package to have confidence interval but i have a problem when I want to calibrate my variance. I get the error > Error in approx(x...

I would like to obtain a variance estimate for a new observation (randomForestInfJack). An observation that was not in X, when creating the random forest (randomForest(X,Y,keep.inbag=T)). It is not clear...

In the `infinitesimalJackknife.R` the following code is supposed to convert a classification prediction to numeric values: ``` predictions = predict(rf, newdata, predict.all = TRUE) pred = predictions$individual # in case...

Hi Professor Wager, Thank you so much for your work. It has helped me a great deal. I have read in your paper (Wager, Hastie, Efron (2012)) that infinitesimal jackknife...