com.github.sh0nk.matplotlib4j.builder.PlotBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of matplotlib4j Show documentation
Show all versions of matplotlib4j Show documentation
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 extends Number> nums);
PlotBuilder add(List extends Number> x, List extends Number> y);
PlotBuilder add(List extends Number> x, List extends Number> y, String fmt);
}