[][src]Trait pycall::MatPlotLib

pub trait MatPlotLib {
    fn import_pyplot_as_plt(&mut self) -> &mut Self;
fn plot_y<Y: AsPythonLitteral>(&mut self, y: &Y) -> &mut Self;
fn plot_xy<X: AsPythonLitteral, Y: AsPythonLitteral>(
        &mut self,
        x: &X,
        y: &Y
    ) -> &mut Self;
fn plot_xyargs<X: AsPythonLitteral, Y: AsPythonLitteral>(
        &mut self,
        x: &X,
        y: &Y,
        args: &str
    ) -> &mut Self;
fn semilogy_y<Y: AsPythonLitteral>(&mut self, y: &Y) -> &mut Self;
fn semilogy_xy<X: AsPythonLitteral, Y: AsPythonLitteral>(
        &mut self,
        x: &X,
        y: &Y
    ) -> &mut Self;
fn semilogy_xyargs<X: AsPythonLitteral, Y: AsPythonLitteral>(
        &mut self,
        x: &X,
        y: &Y,
        args: &str
    ) -> &mut Self;
fn show(&mut self) -> &mut Self; }

Required methods

fn import_pyplot_as_plt(&mut self) -> &mut Self

fn plot_y<Y: AsPythonLitteral>(&mut self, y: &Y) -> &mut Self

fn plot_xy<X: AsPythonLitteral, Y: AsPythonLitteral>(
    &mut self,
    x: &X,
    y: &Y
) -> &mut Self

fn plot_xyargs<X: AsPythonLitteral, Y: AsPythonLitteral>(
    &mut self,
    x: &X,
    y: &Y,
    args: &str
) -> &mut Self

fn semilogy_y<Y: AsPythonLitteral>(&mut self, y: &Y) -> &mut Self

fn semilogy_xy<X: AsPythonLitteral, Y: AsPythonLitteral>(
    &mut self,
    x: &X,
    y: &Y
) -> &mut Self

fn semilogy_xyargs<X: AsPythonLitteral, Y: AsPythonLitteral>(
    &mut self,
    x: &X,
    y: &Y,
    args: &str
) -> &mut Self

fn show(&mut self) -> &mut Self

Loading content...

Implementors

impl MatPlotLib for PythonProgram[src]

Loading content...