Convenience function to conduct a one-sample, two-sided Kolmogorov-Smirnov test for probability distribution equality.
Convenience function to conduct a one-sample, two-sided Kolmogorov-Smirnov test for probability distribution equality. Currently supports the normal distribution, taking as parameters the mean and standard deviation.
A Dataset or a DataFrame containing the sample of data to test
Name of sample column in dataset, of any numerical type
a String name for a theoretical distribution, currently only support "norm".
Double* specifying the parameters to be used for the theoretical distribution.
For "norm" distribution, the parameters includes mean and variance.
DataFrame containing the test result for the input sampled data. This DataFrame will contain a single Row with the following fields:
pValue: Doublestatistic: Double
Java-friendly version of test(dataset: DataFrame, sampleCol: String, cdf: Double => Double)
Java-friendly version of test(dataset: DataFrame, sampleCol: String, cdf: Double => Double)
Conduct the two-sided Kolmogorov-Smirnov (KS) test for data sampled from a continuous distribution.
Conduct the two-sided Kolmogorov-Smirnov (KS) test for data sampled from a continuous distribution. By comparing the largest difference between the empirical cumulative distribution of the sample data and the theoretical distribution we can provide a test for the the null hypothesis that the sample data comes from that theoretical distribution.
A Dataset or a DataFrame containing the sample of data to test
Name of sample column in dataset, of any numerical type
a Double => Double function to calculate the theoretical CDF at a given value
DataFrame containing the test result for the input sampled data. This DataFrame will contain a single Row with the following fields:
pValue: Doublestatistic: Double
:: Experimental ::
Conduct the two-sided Kolmogorov Smirnov (KS) test for data sampled from a continuous distribution. By comparing the largest difference between the empirical cumulative distribution of the sample data and the theoretical distribution we can provide a test for the the null hypothesis that the sample data comes from that theoretical distribution. For more information on KS Test:
Kolmogorov-Smirnov test (Wikipedia)