C# 클래스 Accord.Statistics.Visualizations.Scatterplot

파일 보기 프로젝트 열기: accord-net/framework 1 사용 예제들

Private Properties

프로퍼티 타입 설명
compute void
initialize void

공개 메소드들

메소드 설명
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.

비공개 메소드들

메소드 설명
compute ( double data, int labels ) : void
initialize ( double x, double y, int z ) : void

메소드 상세

Compute() 공개 메소드

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

Compute() 공개 메소드

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

Compute() 공개 메소드

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.
리턴 void

Compute() 공개 메소드

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.
리턴 void

Scatterplot() 공개 메소드

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

Scatterplot() 공개 메소드

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

Scatterplot() 공개 메소드

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.
리턴 System

Scatterplot() 공개 메소드

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.
리턴 System