pub struct PHRegResults {
pub params: Array1<f64>,
pub bse: Array1<f64>,
pub tvalues: Array1<f64>,
pub pvalues: Array1<f64>,
pub cov_params: Array2<f64>,
pub llf: f64,
pub converged: bool,
}Expand description
Results of a fitted Cox proportional-hazards model.
Fields§
§params: Array1<f64>Estimated regression coefficients (log hazard ratios).
bse: Array1<f64>Standard errors of the coefficients.
tvalues: Array1<f64>z-statistics params / bse.
pvalues: Array1<f64>Two-sided p-values from the standard normal distribution.
cov_params: Array2<f64>Coefficient covariance matrix (inverse observed information).
llf: f64Maximized Breslow partial log-likelihood.
converged: boolWhether the Newton iteration converged to the gradient tolerance.
Trait Implementations§
Source§impl Clone for PHRegResults
impl Clone for PHRegResults
Source§fn clone(&self) -> PHRegResults
fn clone(&self) -> PHRegResults
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 PHRegResults
impl RefUnwindSafe for PHRegResults
impl Send for PHRegResults
impl Sync for PHRegResults
impl Unpin for PHRegResults
impl UnsafeUnpin for PHRegResults
impl UnwindSafe for PHRegResults
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