C# Класс Accord.Statistics.Testing.Power.ZTestPowerAnalysis

Наследование: BaseOneSamplePowerAnalysis
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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 effect size and number of samples under IPowerAnalysis.Size.

ComputeSamples ( ) : 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 sampleSize, double power = 0.8, double alpha = 0.05, OneSampleHypothesis hypothesis = OneSampleHypothesis.ValueIsDifferentFromHypothesis ) : ZTestPowerAnalysis

Estimates the number of samples necessary to attain the required power level for the given effect size.

GetSampleSize ( double delta, double standardDeviation = 1, double power = 0.8, double alpha = 0.05, OneSampleHypothesis hypothesis = OneSampleHypothesis.ValueIsDifferentFromHypothesis ) : ZTestPowerAnalysis

Estimates the number of samples necessary to attain the required power level for the given effect size.

ZTestPowerAnalysis ( OneSampleHypothesis hypothesis ) : System

Creates a new ZTestPowerAnalysis.

ZTestPowerAnalysis ( TwoSampleZTest test ) : System

Creates a new ZTestPowerAnalysis.

Описание методов

ComputeEffect() публичный Метод

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.
public ComputeEffect ( ) : void
Результат void

ComputePower() публичный Метод

Computes the power for a test with givens values of effect size and number of samples under IPowerAnalysis.Size.
public ComputePower ( ) : void
Результат void

ComputeSamples() публичный Метод

Gets the recommended sample size for the test to attain the power indicating in IPowerAnalysis.Power considering values of IPowerAnalysis.Effect and IPowerAnalysis.Size.
public ComputeSamples ( ) : void
Результат void

GetEffectSize() публичный статический Метод

Estimates the number of samples necessary to attain the required power level for the given effect size.
public static GetEffectSize ( int sampleSize, double power = 0.8, double alpha = 0.05, OneSampleHypothesis hypothesis = OneSampleHypothesis.ValueIsDifferentFromHypothesis ) : ZTestPowerAnalysis
sampleSize int The number of observations in the sample.
power double The desired power level. Default is 0.8.
alpha double The desired significance level. Default is 0.05.
hypothesis OneSampleHypothesis The alternative hypothesis (research hypothesis) to be tested.
Результат ZTestPowerAnalysis

GetSampleSize() публичный статический Метод

Estimates the number of samples necessary to attain the required power level for the given effect size.
public static GetSampleSize ( double delta, double standardDeviation = 1, double power = 0.8, double alpha = 0.05, OneSampleHypothesis hypothesis = OneSampleHypothesis.ValueIsDifferentFromHypothesis ) : ZTestPowerAnalysis
delta double The minimum detectable difference.
standardDeviation double The difference standard deviation.
power double The desired power level. Default is 0.8.
alpha double The desired significance level. Default is 0.05.
hypothesis OneSampleHypothesis The alternative hypothesis (research hypothesis) to be tested.
Результат ZTestPowerAnalysis

ZTestPowerAnalysis() публичный Метод

Creates a new ZTestPowerAnalysis.
public ZTestPowerAnalysis ( OneSampleHypothesis hypothesis ) : System
hypothesis OneSampleHypothesis The hypothesis tested.
Результат System

ZTestPowerAnalysis() публичный Метод

Creates a new ZTestPowerAnalysis.
public ZTestPowerAnalysis ( TwoSampleZTest test ) : System
test TwoSampleZTest The test to create the analysis for.
Результат System