pub struct JarqueBera {
pub statistic: f64,
pub pvalue: f64,
pub skew: f64,
pub kurtosis: f64,
}Expand description
Output of jarque_bera.
Fields§
§statistic: f64Jarque–Bera test statistic.
pvalue: f64Two-sided p-value from the chi-squared distribution with 2 d.o.f.
skew: f64Sample skewness (biased estimator).
kurtosis: f64Sample kurtosis (biased, non-excess: normal distribution gives 3).
Trait Implementations§
Source§impl Clone for JarqueBera
impl Clone for JarqueBera
Source§fn clone(&self) -> JarqueBera
fn clone(&self) -> JarqueBera
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 moreimpl Copy for JarqueBera
Auto Trait Implementations§
impl Freeze for JarqueBera
impl RefUnwindSafe for JarqueBera
impl Send for JarqueBera
impl Sync for JarqueBera
impl Unpin for JarqueBera
impl UnsafeUnpin for JarqueBera
impl UnwindSafe for JarqueBera
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