Skip to content

Commit

Permalink
Update difference_test_documentation.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
Corey-Bryant committed Mar 10, 2022
1 parent 9ee4582 commit 443559a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions source/difference_test_documentation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,19 @@ This method is similar to researchpy.ttest(), except it allows the user to use t

This method can perform the following tests:

* Independent sample t-test :footcite:p:`2018:scipy_ttest_ind`
* Independent sample t-test :footcite:p:`scipy_ttest_ind`

* `psudo-code: difference_test(formula_like, data, equal_variances = True, independent_samples = True)`

* Paired sample t-test :footcite:p:`2018:scipy_ttest_rel`
* Paired sample t-test :footcite:p:`scipy_ttest_rel`

* `psudo-code: difference_test(formula_like, data, equal_variances = True, independent_samples = False)`

* Welch's t-test :footcite:p:`2018:scipy_ttest_ind`
* Welch's t-test :footcite:p:`scipy_ttest_ind`

* `psudo-code: difference_test(formula_like, data, equal_variances = False, independent_samples = True)`

* Wilcoxon signed-rank test :footcite:p:`2018:scipy_wilcoxon`
* Wilcoxon signed-rank test :footcite:p:`scipy_wilcoxon`

* By default, discards all zero-differences; this is known as the 'wilcox' method.
* `psudo-code: difference_test(formula_like, data, equal_variances = False, independent_samples = False)`
Expand Down

0 comments on commit 443559a

Please sign in to comment.