All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.sh0nk.matplotlib4j.builder.PlotBuilder Maven / Gradle / Ivy

Go to download

Matplotlib for java: A simple graph plot library for java with powerful python matplotlib

The newest version!
package com.github.sh0nk.matplotlib4j.builder;

import com.github.sh0nk.matplotlib4j.kwargs.Line2DBuilder;

import java.util.List;


/**
 * matplotlib.pyplot.plot(*args, **kwargs)
 */
public interface PlotBuilder extends Builder, Line2DBuilder {

    PlotBuilder add(List nums);

    PlotBuilder add(List x, List y);

    PlotBuilder add(List x, List y, String fmt);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy