pub struct BoxSpread {
pub lower_whisker: f64,
pub quartile1: f64,
pub median: f64,
pub quartile3: f64,
pub upper_whisker: f64,
}
Expand description
Contains the values of a single box in a box plot.
Fields
lower_whisker: f64
Value of lower whisker (typically minimum).
The whisker is not drawn if lower_whisker >= quartile1
.
quartile1: f64
Value of lower box threshold (typically 25% quartile)
median: f64
Value of middle line in box (typically median)
quartile3: f64
Value of upper box threshold (typically 75% quartile)
upper_whisker: f64
Value of upper whisker (typically maximum)
The whisker is not drawn if upper_whisker <= quartile3
.
Implementations
Trait Implementations
impl StructuralPartialEq for BoxSpread
Auto Trait Implementations
impl RefUnwindSafe for BoxSpread
impl Send for BoxSpread
impl Sync for BoxSpread
impl Unpin for BoxSpread
impl UnwindSafe for BoxSpread
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more