pub struct GeeResults {
pub params: Array1<f64>,
pub bse: Array1<f64>,
pub bse_naive: Array1<f64>,
pub tvalues: Array1<f64>,
pub pvalues: Array1<f64>,
pub cov_robust: Array2<f64>,
pub cov_naive: Array2<f64>,
pub dep_params: f64,
pub scale: f64,
pub fittedvalues: Array1<f64>,
pub score_norm: f64,
pub converged: bool,
}Expand description
Fitted GEE results.
Fields§
§params: Array1<f64>Estimated mean-structure parameters β.
bse: Array1<f64>Robust (sandwich) standard errors.
bse_naive: Array1<f64>Naive (model-based) standard errors.
tvalues: Array1<f64>params / bse (robust).
pvalues: Array1<f64>Two-sided normal p-values from the robust z-statistics.
cov_robust: Array2<f64>Robust sandwich covariance matrix of params.
cov_naive: Array2<f64>Naive model-based covariance matrix of params.
dep_params: f64Estimated working-correlation (association) parameter; 0 for
independence.
scale: f64Estimated dispersion/scale (1 for Poisson/Binomial).
fittedvalues: Array1<f64>Fitted means μ in input row order.
score_norm: f64L2 norm of the score equations at convergence.
converged: boolWhether the score-norm tolerance was met.
Trait Implementations§
Source§impl Clone for GeeResults
impl Clone for GeeResults
Source§fn clone(&self) -> GeeResults
fn clone(&self) -> GeeResults
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for GeeResults
impl RefUnwindSafe for GeeResults
impl Send for GeeResults
impl Sync for GeeResults
impl Unpin for GeeResults
impl UnsafeUnpin for GeeResults
impl UnwindSafe for GeeResults
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more