[][src]Struct plotlib::repr::BoxPlot

pub struct BoxPlot<'a> { /* fields omitted */ }

Methods

impl<'a> BoxPlot<'a>[src]

pub fn from_slice(v: &'a [f64]) -> Self[src]

pub fn from_vec(v: Vec<f64>) -> Self[src]

pub fn style(self, style: &BoxStyle) -> Self[src]

pub fn get_style(&self) -> &BoxStyle[src]

pub fn label<T>(self, label: T) -> Self where
    T: Into<String>, 
[src]

pub fn get_label(&self) -> &String[src]

Trait Implementations

impl<'a> CategoricalRepresentation for BoxPlot<'a>[src]

fn range(&self) -> (f64, f64)[src]

The maximum range. Used for auto-scaling axis

fn ticks(&self) -> Vec<String>[src]

The ticks that this representation covers. Used to collect all ticks for display

Auto Trait Implementations

impl<'a> RefUnwindSafe for BoxPlot<'a>

impl<'a> Send for BoxPlot<'a>

impl<'a> Sync for BoxPlot<'a>

impl<'a> Unpin for BoxPlot<'a>

impl<'a> UnwindSafe for BoxPlot<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.