sktree.stats.build_hyppo_oob_forest#
- sktree.stats.build_hyppo_oob_forest(est, X, y, verbose=False, **est_kwargs)[source]#
Build a hypothesis testing forest using oob samples.
- Parameters:
- estForest
The type of forest to use. Must be enabled with
bootstrap=True
.- XArrayLike of shape (n_samples, n_features)
Data.
- yArrayLike of shape (n_samples, n_outputs)
Binary target, so
n_outputs
should be at most 1.- verbose
bool
, optional Verbosity, by default False.
- **est_kwargs
dict
, optional Additional keyword arguments to pass to the forest estimator.
- Returns:
- estForest
Fitted forest.
- all_probaArrayLike of shape (n_estimators, n_samples, n_outputs)
The predicted posterior probabilities for each estimator on their out of bag samples.