Accord.Statistics.Visualizations.Scatterplot.Scatterplot C# (CSharp) Method

Scatterplot() public method

Constructs an empty Scatter Plot with given title and axis names.
public Scatterplot ( String title, String xAxisTitle, String yAxisTitle, String labelTitle ) : System
title String Scatter Plot title.
xAxisTitle String Title for the x-axis.
yAxisTitle String Title for the y-axis.
labelTitle String Title for the labels.
return System
        public Scatterplot(String title, String xAxisTitle, String yAxisTitle, String labelTitle)
        {
            this.title = title;
            this.xAxisTitle = xAxisTitle;
            this.yAxisTitle = yAxisTitle;
            this.labelTitle = labelTitle;
        }

Same methods

Scatterplot::Scatterplot ( ) : System
Scatterplot::Scatterplot ( String title ) : System
Scatterplot::Scatterplot ( String title, String xAxisTitle, String yAxisTitle ) : System