C# Class Accord.Statistics.Visualizations.Scatterplot

Show file Open project: accord-net/framework Class Usage Examples

Private Properties

Property Type Description
compute void
initialize void

Public Methods

Method Description
Compute ( double values ) : void

Computes the scatter plot.

Compute ( double x, double y ) : void

Computes the scatter plot.

Compute ( double x, double y, int labels ) : void

Computes the scatter plot.

Compute ( double data, int labels ) : void

Computes the scatter plot.

Scatterplot ( ) : System

Constructs an empty Scatter plot.

Scatterplot ( String title ) : System

Constructs an empty Scatter plot with given title.

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

Constructs an empty scatter plot with given title and axis names.

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

Constructs an empty Scatter Plot with given title and axis names.

Private Methods

Method Description
compute ( double data, int labels ) : void
initialize ( double x, double y, int z ) : void

Method Details

Compute() public method

Computes the scatter plot.
public Compute ( double values ) : void
values double Array of values.
return void

Compute() public method

Computes the scatter plot.
public Compute ( double x, double y ) : void
x double Array of X values.
y double Array of corresponding Y values.
return void

Compute() public method

Computes the scatter plot.
public Compute ( double x, double y, int labels ) : void
x double Array of X values.
y double Array of corresponding Y values.
labels int Array of integer labels defining a class for each (x,y) pair.
return void

Compute() public method

Computes the scatter plot.
public Compute ( double data, int labels ) : void
data double Array of { x,y } values.
labels int Array of integer labels defining a class for each (x,y) pair.
return void

Scatterplot() public method

Constructs an empty Scatter plot.
public Scatterplot ( ) : System
return System

Scatterplot() public method

Constructs an empty Scatter plot with given title.
public Scatterplot ( String title ) : System
title String Scatter plot title.
return System

Scatterplot() public method

Constructs an empty scatter plot with given title and axis names.
public Scatterplot ( String title, String xAxisTitle, String yAxisTitle ) : System
title String Scatter Plot title.
xAxisTitle String Title for the x-axis.
yAxisTitle String Title for the y-axis.
return System

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