pub struct Data<'a, X, Y>(_, _)
where
    X: 'a,
    Y: 'a
;
Expand description

Bivariate (X, Y) data

Invariants:

  • No NaNs in the data
  • At least two data points in the set

Implementations§

Returns the length of the data set

Checks whether the data set is empty

Iterate over the data set

Creates a new data set from two existing slices

Returns the bootstrap distributions of the parameters estimated by the statistic

  • Multi-threaded
  • Time: O(nresamples)
  • Memory: O(nresamples)

Returns a view into the X data

Returns a view into the Y data

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.