pub struct Stem {
pub x: Vec<f64>,
pub y: Vec<f64>,
pub opts: Vec<Opt>,
}Expand description
A stem plot.
ax.stem({x}, {y}, **{opts})Prelude: No
JSON data: [list[float], list[float]]
Fields§
§x: Vec<f64>X-coordinates.
y: Vec<f64>Y-coordinates.
opts: Vec<Opt>Optional keyword arguments.
Implementations§
Trait Implementations§
Source§impl Matplotlib for Stem
impl Matplotlib for Stem
Source§fn is_prelude(&self) -> bool
fn is_prelude(&self) -> bool
Return
true if self should be considered as a prelude item, which
are executed in the order seen after imports but before plot
initialization.Source§impl MatplotlibOpts for Stem
impl MatplotlibOpts for Stem
impl StructuralPartialEq for Stem
Auto Trait Implementations§
impl Freeze for Stem
impl RefUnwindSafe for Stem
impl Send for Stem
impl Sync for Stem
impl Unpin for Stem
impl UnsafeUnpin for Stem
impl UnwindSafe for Stem
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