cellrank.ul.models.SKLearnModel.default_confidence_interval
- SKLearnModel.default_confidence_interval(x_test=None, **kwargs)
Calculate the confidence interval, if the underlying
model
has no method for it.This formula is taken from [DeSalvo, 1970], eq. 5.
- Parameters
x_test (
Optional
[ndarray
]) – Array of shape (n_samples,) used for confidence interval calculation. If None, usex_test
.kwargs – Keyword arguments for underlying
model
’s confidence method or fordefault_confidence_interval()
.
- Return type
- Returns
Updates and returns the following field:
conf_int
- Array of shape (n_samples, 2) containing the lower and upper bounds of the confidence interval.
Also update the following fields: