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