pub struct Binomial { /* private fields */ }
Expand description
The Binomial regression family.
Trait Implementations
sourceimpl Criterion for Binomial
impl Criterion for Binomial
sourcefn model_variance(&self, mu: f64) -> f64
fn model_variance(&self, mu: f64) -> f64
The variance of the regression family.
sourcefn initialize_mu(&self, y: &[f64]) -> Vec<f64>
fn initialize_mu(&self, y: &[f64]) -> Vec<f64>
Initializes the mean value. Read more
sourcefn compute_working_weight(&self, mu: &[f64]) -> Vec<f64>
fn compute_working_weight(&self, mu: &[f64]) -> Vec<f64>
Computes the working weights that make up the diagonal
of the
W
matrix used in the iterative reweighted least squares
algorithm. Read moresourcefn compute_y_bar(&self, y: &[f64], mu: &[f64]) -> Vec<f64>
fn compute_y_bar(&self, y: &[f64], mu: &[f64]) -> Vec<f64>
Computes the adjustment to the fitted values used during
fitting. Read more
sourcefn apply_link_func(&self, vec: Vector<f64>) -> Vector<f64>
fn apply_link_func(&self, vec: Vector<f64>) -> Vector<f64>
Applies the link function to a vector.
sourcefn apply_link_inv(&self, vec: Vector<f64>) -> Vector<f64>
fn apply_link_inv(&self, vec: Vector<f64>) -> Vector<f64>
Applies the inverse of the link function to a vector.
Auto Trait Implementations
impl RefUnwindSafe for Binomial
impl Send for Binomial
impl Sync for Binomial
impl Unpin for Binomial
impl UnwindSafe for Binomial
Blanket Implementations
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more