From 83df74bb6f0a49571860fe1065db99c583fc836b Mon Sep 17 00:00:00 2001 From: Martin Happ Date: Fri, 15 Mar 2019 22:48:33 +0100 Subject: [PATCH 1/5] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 3a0fb0b..a95a7d8 100644 --- a/README.md +++ b/README.md @@ -193,6 +193,8 @@ 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. From 3ef0027b79814ef9af49d6fe594cc9279067e6f4 Mon Sep 17 00:00:00 2001 From: Martin Happ Date: Fri, 15 Mar 2019 22:49:12 +0100 Subject: [PATCH 2/5] Update README.md --- README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a95a7d8..3e61c63 100644 --- a/README.md +++ b/README.md @@ -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 @@ -194,7 +194,5 @@ PyNonpar.repeated_measures.kepner_robinson_test(data, time, subject, distributio [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. From 8cf6f81ba807e7059f193f7d8ad86970b08ca8c2 Mon Sep 17 00:00:00 2001 From: Martin Happ Date: Fri, 15 Mar 2019 23:13:58 +0100 Subject: [PATCH 3/5] Update appveyor.yml --- appveyor.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 5a449c7..964e1cb 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -15,10 +15,11 @@ init: - "set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%MINICONDA%\\Library\\bin;%PATH%" install: + - conda install pip numpy scipy - conda config --set always_yes yes --set changeps1 no - conda config --add channels conda-forge - conda update -q conda - - conda install pip numpy scipy + - "python -m pip install --upgrade pip" - "pip install -q pytest" - "pip install -qr requirements.txt" - "pip install ." From f4fc6ba93af41a2dd3eff602d83ee2fda9b701e7 Mon Sep 17 00:00:00 2001 From: Martin Happ Date: Fri, 15 Mar 2019 23:15:48 +0100 Subject: [PATCH 4/5] Update appveyor.yml --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 964e1cb..49e8f0c 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -15,9 +15,9 @@ init: - "set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%MINICONDA%\\Library\\bin;%PATH%" install: - - conda install pip numpy scipy - conda config --set always_yes yes --set changeps1 no - conda config --add channels conda-forge + - conda install pip numpy scipy - conda update -q conda - "python -m pip install --upgrade pip" - "pip install -q pytest" From 7b7dbc54f4efdd3c0398b1981423dd49514c7170 Mon Sep 17 00:00:00 2001 From: Martin Happ Date: Fri, 15 Mar 2019 23:25:47 +0100 Subject: [PATCH 5/5] Update setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f5d187c..5345263 100644 --- a/setup.py +++ b/setup.py @@ -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(