Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Happ committed Mar 16, 2019
2 parents bb88ac7 + 7b7dbc5 commit a7298a1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ PyNonpar.twosample.wilcoxon_mann_whitney_test(x, y, alternative="less", method =
To calculate the sample size which is needed to detect a specific relative effect p with probability beta and type-I error
alpha, the function'wilcoxon_mann_whitney_ssp' can be used. Here, prior information for one group is needed.
The artificial data for the second group can be created by some interpretable effect, e.g. a location shift effect.
For more information, see [3] or [4].
For more information, see [1] or [3].

```Python
import PyNonpar
Expand Down Expand Up @@ -193,6 +193,6 @@ PyNonpar.repeated_measures.kepner_robinson_test(data, time, subject, distributio
[1] Brunner, E., Bathke A. C. and Konietschke, F: Rank- and Pseudo-Rank Procedures in Factorial Designs - Using R and SAS, Springer Verlag, to appear.

[2] Kepner, J. L., & Robinson, D. H. (1988). Nonparametric methods for detecting treatment effects in repeated-measures designs. Journal of the American Statistical Association, 83(402), 456-461.
[3] Brunner, E., Bathke A. C. and Konietschke, F: Rank- and Pseudo-Rank Procedures in Factorial Designs - Using R and SAS, Springer Verlag, to appear,
[4] Happ, M., Bathke, A. C., & Brunner, E. (2019). Optimal sample size planning for the Wilcoxon‐Mann‐Whitney test. Statistics in medicine, 38(3), 363-375.

[3] Happ, M., Bathke, A. C., & Brunner, E. (2019). Optimal sample size planning for the Wilcoxon‐Mann‐Whitney test. Statistics in medicine, 38(3), 363-375.

3 changes: 2 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@ init:
install:
- conda config --set always_yes yes --set changeps1 no
- conda config --add channels conda-forge
- conda update -q conda
- conda install pip numpy scipy
- conda update -q conda
- "python -m pip install --upgrade pip"
- "pip install -q pytest"
- "pip install -qr requirements.txt"
- "pip install ."
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup


with open("README.md", "r") as fh:
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

setup(
Expand Down

0 comments on commit a7298a1

Please sign in to comment.