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

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

공개 메소드들

메소드 설명
SignTest ( double sample, double hypothesizedMedian, OneSampleHypothesis alternate = OneSampleHypothesis.ValueIsDifferentFromHypothesis ) : System

Tests the null hypothesis that the sample median is equal to a hypothesized value.

SignTest ( int positiveSamples, int totalSamples, OneSampleHypothesis alternate ) : System

Tests the null hypothesis that the sample median is equal to a hypothesized value.

보호된 메소드들

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

Computes the one sample sign test.

메소드 상세

Compute() 보호된 메소드

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

SignTest() 공개 메소드

Tests the null hypothesis that the sample median is equal to a hypothesized value.
public SignTest ( double sample, double hypothesizedMedian, OneSampleHypothesis alternate = OneSampleHypothesis.ValueIsDifferentFromHypothesis ) : System
sample double The data samples from which the test will be performed.
hypothesizedMedian double The constant to be compared with the samples.
alternate OneSampleHypothesis The alternative hypothesis (research hypothesis) to test.
리턴 System

SignTest() 공개 메소드

Tests the null hypothesis that the sample median is equal to a hypothesized value.
public SignTest ( int positiveSamples, int totalSamples, OneSampleHypothesis alternate ) : System
positiveSamples int The number of positive samples.
totalSamples int The total number of samples.
alternate OneSampleHypothesis The alternative hypothesis (research hypothesis) to test.
리턴 System