C# Класс Accord.Statistics.Testing.SignTest

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

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

Метод Описание
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