pub struct Hist2d {
pub x: Vec<f64>,
pub y: Vec<f64>,
pub opts: Vec<Opt>,
}Expand description
A histogram of two variables.
ax.hist2d({data}, **{opts})Prelude: No
JSON data: [list[float], list[float]]
Fields§
§x: Vec<f64>X data set.
y: Vec<f64>Y data set.
opts: Vec<Opt>Optional keyword arguments.
Implementations§
Trait Implementations§
Source§impl Matplotlib for Hist2d
impl Matplotlib for Hist2d
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 Hist2d
impl MatplotlibOpts for Hist2d
impl StructuralPartialEq for Hist2d
Auto Trait Implementations§
impl Freeze for Hist2d
impl RefUnwindSafe for Hist2d
impl Send for Hist2d
impl Sync for Hist2d
impl Unpin for Hist2d
impl UnsafeUnpin for Hist2d
impl UnwindSafe for Hist2d
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