forrust 0.2.3

very dumb, not yet usable package for time series forecasting
Documentation
use plotlib::view::View;
use plotlib::repr::Plot;


/// Plottables can be made into plotlib Plots
pub trait Plotable {
    /// Returns a plotlib Plot representing this object
    fn plot(&self) -> Box<dyn View>;

    fn as_plot(&self) -> Plot;
}