C# 클래스 Accord.Statistics.Testing.TwoSampleSignTest

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

공개 메소드들

메소드 설명
TwoSampleSignTest ( double sample1, double sample2, TwoSampleHypothesis alternate ) : System

Creates a new sign test for two samples.

TwoSampleSignTest ( int positiveSamples, int totalSamples, TwoSampleHypothesis alternate ) : System

Creates a new sign test for two samples.

보호된 메소드들

메소드 설명
Compute ( int positive, int total, TwoSampleHypothesis alternate ) : void

Computes the two sample sign test.

메소드 상세

Compute() 보호된 메소드

Computes the two sample sign test.
protected Compute ( int positive, int total, TwoSampleHypothesis alternate ) : void
positive int
total int
alternate TwoSampleHypothesis
리턴 void

TwoSampleSignTest() 공개 메소드

Creates a new sign test for two samples.
public TwoSampleSignTest ( double sample1, double sample2, TwoSampleHypothesis alternate ) : System
sample1 double The first sample of observations.
sample2 double The second sample of observations.
alternate TwoSampleHypothesis The alternative hypothesis (research hypothesis) to test.
리턴 System

TwoSampleSignTest() 공개 메소드

Creates a new sign test for two samples.
public TwoSampleSignTest ( int positiveSamples, int totalSamples, TwoSampleHypothesis alternate ) : System
positiveSamples int The number of positive samples (successes).
totalSamples int The total number of samples (trials).
alternate TwoSampleHypothesis The alternative hypothesis (research hypothesis) to test.
리턴 System