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

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

공개 메소드들

메소드 설명
TwoProportionZTest ( double proportion1, int sampleSize1, double proportion2, int sampleSize2, TwoSampleHypothesis alternate = TwoSampleHypothesis.ValuesAreDifferent ) : System

Creates a new Z-Test for two sample proportions.

TwoProportionZTest ( int successes1, int trials1, int successes2, int trials2, TwoSampleHypothesis alternate = TwoSampleHypothesis.ValuesAreDifferent ) : System

Creates a new Z-Test for two sample proportions.

보호된 메소드들

메소드 설명
Compute ( int successes1, int trials1, int successes2, int trials2, TwoSampleHypothesis alternate ) : void

Computes the Z-test for two sample proportions.

메소드 상세

Compute() 보호된 메소드

Computes the Z-test for two sample proportions.
protected Compute ( int successes1, int trials1, int successes2, int trials2, TwoSampleHypothesis alternate ) : void
successes1 int
trials1 int
successes2 int
trials2 int
alternate TwoSampleHypothesis
리턴 void

TwoProportionZTest() 공개 메소드

Creates a new Z-Test for two sample proportions.
public TwoProportionZTest ( double proportion1, int sampleSize1, double proportion2, int sampleSize2, TwoSampleHypothesis alternate = TwoSampleHypothesis.ValuesAreDifferent ) : System
proportion1 double The proportion of success observations in the first sample.
sampleSize1 int The total number of observations in the first sample.
proportion2 double The proportion of success observations in the second sample.
sampleSize2 int The total number of observations in the second sample.
alternate TwoSampleHypothesis The alternative hypothesis (research hypothesis) to test.
리턴 System

TwoProportionZTest() 공개 메소드

Creates a new Z-Test for two sample proportions.
public TwoProportionZTest ( int successes1, int trials1, int successes2, int trials2, TwoSampleHypothesis alternate = TwoSampleHypothesis.ValuesAreDifferent ) : System
successes1 int The number of successes in the first sample.
trials1 int The total number of trials (observations) in the first sample.
successes2 int The number of successes in the second sample.
trials2 int The total number of trials (observations) in the second sample.
alternate TwoSampleHypothesis The alternative hypothesis (research hypothesis) to test.
리턴 System