pub struct DcovTest {
pub statistic: f64,
pub pvalue: f64,
}Expand description
Result of the asymptotic distance-covariance (dCov) test of independence.
Fields§
§statistic: f64The asymptotic test statistic sqrt(n · dCov² / S).
pvalue: f64Two-sided p-value from the standard normal approximation.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DcovTest
impl RefUnwindSafe for DcovTest
impl Send for DcovTest
impl Sync for DcovTest
impl Unpin for DcovTest
impl UnsafeUnpin for DcovTest
impl UnwindSafe for DcovTest
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