pub struct BoxPlotSeries {
pub datasets: Vec<Vec<f64>>,
pub label: Option<String>,
pub labels: Option<Vec<String>>,
}Expand description
A box plot series showing distribution statistics.
Fields§
§datasets: Vec<Vec<f64>>Datasets to plot (one box per dataset).
label: Option<String>Optional series label.
labels: Option<Vec<String>>Optional category labels.
Implementations§
Trait Implementations§
Source§impl Clone for BoxPlotSeries
impl Clone for BoxPlotSeries
Source§fn clone(&self) -> BoxPlotSeries
fn clone(&self) -> BoxPlotSeries
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 moreSource§impl Debug for BoxPlotSeries
impl Debug for BoxPlotSeries
Source§impl SeriesRenderer for BoxPlotSeries
impl SeriesRenderer for BoxPlotSeries
Source§fn data_bounds(&self) -> DataBounds
fn data_bounds(&self) -> DataBounds
Compute the data bounds for this series.
Auto Trait Implementations§
impl Freeze for BoxPlotSeries
impl RefUnwindSafe for BoxPlotSeries
impl Send for BoxPlotSeries
impl Sync for BoxPlotSeries
impl Unpin for BoxPlotSeries
impl UnsafeUnpin for BoxPlotSeries
impl UnwindSafe for BoxPlotSeries
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