Method | Description | |
---|---|---|
ComputeEffect ( ) : void |
Computes the minimum detectable effect size for the test considering the power given in IPowerAnalysis.Power, the number of samples in IPowerAnalysis.Samples and the significance level IPowerAnalysis.Size.
|
|
ComputePower ( ) : void |
Computes the power for a test with givens values of
|
|
ComputeSamples ( double proportion = 1 ) : void |
Gets the recommended sample size for the test to attain the power indicating in IPowerAnalysis.Power considering values of IPowerAnalysis.Effect and IPowerAnalysis.Size.
|
|
GetEffectSize ( int sampleSize1, int sampleSize2, double power = 0.8, double alpha = 0.05, TwoSampleHypothesis hypothesis = TwoSampleHypothesis.ValuesAreDifferent ) : TwoSampleZTestPowerAnalysis |
Estimates the number of samples necessary to attain the required power level for the given effect size.
|
|
GetSampleSize ( double delta, double standardDeviation = 1, double proportion = 1.0, double power = 0.8, double alpha = 0.05, TwoSampleHypothesis hypothesis = TwoSampleHypothesis.ValuesAreDifferent ) : TwoSampleZTestPowerAnalysis |
Estimates the number of samples necessary to attain the required power level for the given effect size.
|
|
TwoSampleZTestPowerAnalysis ( TwoSampleHypothesis hypothesis ) : System |
Creates a new ZTestPowerAnalysis.
|
|
TwoSampleZTestPowerAnalysis ( TwoSampleZTest test ) : System |
Creates a new ZTestPowerAnalysis.
|
public ComputeSamples ( double proportion = 1 ) : void | ||
proportion | double | |
return | void |
public static GetEffectSize ( int sampleSize1, int sampleSize2, double power = 0.8, double alpha = 0.05, TwoSampleHypothesis hypothesis = TwoSampleHypothesis.ValuesAreDifferent ) : TwoSampleZTestPowerAnalysis | ||
sampleSize1 | int | The number of observations in the first sample. |
sampleSize2 | int | The number of observations in the second sample. |
power | double | The desired power level. Default is 0.8. |
alpha | double | The desired significance level. Default is 0.05. |
hypothesis | TwoSampleHypothesis | The alternative hypothesis (research hypothesis) to be tested. |
return | TwoSampleZTestPowerAnalysis |
public static GetSampleSize ( double delta, double standardDeviation = 1, double proportion = 1.0, double power = 0.8, double alpha = 0.05, TwoSampleHypothesis hypothesis = TwoSampleHypothesis.ValuesAreDifferent ) : TwoSampleZTestPowerAnalysis | ||
delta | double | The minimum detectable difference. |
standardDeviation | double | The difference standard deviation. |
proportion | double | The proportion of observations in the second group /// when compared to the first group. A proportion of 2:1 results in twice more /// samples in the second group than in the first. Default is 1. |
power | double | The desired power level. Default is 0.8. |
alpha | double | The desired significance level. Default is 0.05. |
hypothesis | TwoSampleHypothesis | The alternative hypothesis (research hypothesis) to be tested. |
return | TwoSampleZTestPowerAnalysis |
public TwoSampleZTestPowerAnalysis ( TwoSampleHypothesis hypothesis ) : System | ||
hypothesis | TwoSampleHypothesis | The hypothesis tested. |
return | System |
public TwoSampleZTestPowerAnalysis ( TwoSampleZTest test ) : System | ||
test | TwoSampleZTest | The test to create the analysis for. |
return | System |