pub struct Errorbar {
pub x: Vec<f64>,
pub y: Vec<f64>,
pub e: Vec<f64>,
pub opts: Vec<Opt>,
}
Expand description
Plot with error bars.
ax.errorbar({x}, {y}, {e}, **{opts})
Prelude: No
JSON data: [list[float], list[float], list[float]]
Fields§
§x: Vec<f64>
X-coordinates.
y: Vec<f64>
Y-coordinates.
e: Vec<f64>
Symmetric error bar sizes on Y-coordinates.
opts: Vec<Opt>
Optional keyword arguments.
Implementations§
Trait Implementations§
Source§impl From<Errorbar> for FillBetween
Convert an Errorbar
to a FillBetween
, maintaining all options.
impl From<Errorbar> for FillBetween
Convert an Errorbar
to a FillBetween
, maintaining all options.
Source§impl From<FillBetween> for Errorbar
Convert a FillBetween
to an Errorbar
, maintaining all options.
impl From<FillBetween> for Errorbar
Convert a FillBetween
to an Errorbar
, maintaining all options.
Source§fn from(fill_between: FillBetween) -> Self
fn from(fill_between: FillBetween) -> Self
Converts to this type from the input type.
Source§impl Matplotlib for Errorbar
impl Matplotlib for Errorbar
Source§fn is_prelude(&self) -> bool
fn is_prelude(&self) -> bool
Return
true
if self
should be considered as a prelude item, which
are execute in the order seen but before any non-prelude items.Source§impl MatplotlibOpts for Errorbar
impl MatplotlibOpts for Errorbar
impl StructuralPartialEq for Errorbar
Auto Trait Implementations§
impl Freeze for Errorbar
impl RefUnwindSafe for Errorbar
impl Send for Errorbar
impl Sync for Errorbar
impl Unpin for Errorbar
impl UnwindSafe for Errorbar
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