Parametric and Non-Parametric tests are statistical methods used to observe significance within a dataset containing a continuous outcome. They differ in the assumptions they make about the underlying statistical distributions present in the data; Parametric tests assume a normal distribution, while Non-Parametric tests do not rely on any.
Descriptions of each are provided below.
Parametric tests include t-tests and ANOVA. These tests use the mean to determine significance.
To perform a Parametric test, your data must meet the following requirements:
1. Data must be normally distributed
2. Data must have been randomly sampled from a population
NOTE: The assumptions of normality can be ignored if the sample size being tested is large enough
One Sample T-Test: Used to compare a continuous sample variable mean to a hypothesized mean.
Two Sample T-Test: Used to compare sample means from two groups to test if they are equal or not. The two sample groups must be independent
Paired T-Test: Similar to the two sample t-test but for non-independent sample groups.
An ANOVA test expands on the t-test and can be used on samples with 3 or more groupings. ANOVA tests to see if there is an association between the grouping variable and the response variable.
One Way ANOVA: Considers one independent variable/factor.
Two Way ANOVA: Considers two categorical groups.
Following a significant ANOVA result, the Tukey HSD test can be used to observe pairwise comparisons between sample groups. This is an effective way of observing which group means within your data are significantly different.
As mentioned before, Non-Parametric tests do not rely on an underlying distribution in your data, meaning your data does not have to exhibit a normal distribution. Non-Parametric tests utilize the median rather than the mean and therefore can be used when the assumptions of parametric tests are not met. Non-Parametric tests are considered to have less power than Parametric tests and should not be used if the requirements for Parametric testing are met.
One-Sample Wilcoxon: This test is used to observe whether or not the sample median is equal to a known/hypothesized median. It is the Non-Parametric equivalent to the One Sample t-test.
Two-Sample Wilcoxon: Used to compare the medians of two independent groups of samples. It is the Non-Parametric equivalent to the unpaired Two Sample t-test.
Wilcoxon Sign Rank: Used to compare the medians of two paired sample groups. It is the Non-Parametric equivalent to the Paired t-test.
This is the Non-Parametric equivalent to ANOVA. It is used to test if the medians of three of more sample groups are the same.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.