diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 731e16a..35e0606 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -21,15 +21,18 @@ some ideas on how to contribute. . ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md +├── LICENSE.txt ├── Makefile ├── README.md +├── cheatsheets +│ └── ... ├── index.html # Published HTML. ├── requirements-dev.txt # Dependencies for development. ├── requirements.txt # Dependencies. ├── scripts # Shell scripts for development, testing and deployment. │ └── ... ├── tests-as-linear.ipynb # Main notebook. -└── tests_as_linear # Python source code +└── tests_as_linear # Supporting Python source code. ├── __init__.py ├── plots.py # Functions for large plots in main notebook. └── utils.py # Utility functions used in main notebook. diff --git a/Makefile b/Makefile index 4c8e41a..241f8f8 100644 --- a/Makefile +++ b/Makefile @@ -41,7 +41,7 @@ test: clean # Run test scripts. check: clean lint test # Alias for `make clean lint test`. black: # Format code in-place with black. - black *.py --target-version=py36 + black tests_as_linear/ --target-version=py36 publish: # Run notebook in-place and generate HTML files. jupyter nbconvert --to notebook --inplace --execute tests-as-linear.ipynb diff --git a/README.md b/README.md index efe5d49..fe32036 100644 --- a/README.md +++ b/README.md @@ -26,14 +26,11 @@ please refer to the [original appendices upstream](https://github.com/lindeloev/tests-as-linear/tree/master/simulations) for the simulations. -
statsmodels
or scipy
, the two statistical Python
- libraries used in this port. R code with no simple Python equivalent (mainly
- in parts 6 and 7, Three or more means and Proportions: Chi-square
- is a log-linear model) has not been ported. Such code has been noted in
- yellow warning boxes such as this one.
-