pub struct ThreeFold {
pub endowments: f64,
pub coefficients: f64,
pub interaction: f64,
pub gap: f64,
}Expand description
Three-fold Blinder-Oaxaca decomposition of the mean gap.
Fields§
§endowments: f64Endowments (characteristics) effect (x̄_f − x̄_s) · β_s.
coefficients: f64Coefficients effect x̄_s · (β_f − β_s).
interaction: f64Interaction effect (x̄_f − x̄_s) · (β_f − β_s).
gap: f64The raw mean gap ȳ_f − ȳ_s.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ThreeFold
impl RefUnwindSafe for ThreeFold
impl Send for ThreeFold
impl Sync for ThreeFold
impl Unpin for ThreeFold
impl UnsafeUnpin for ThreeFold
impl UnwindSafe for ThreeFold
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