├── .codespellrc ├── .gitignore ├── .pre-commit-config.yaml ├── Applying algebra to regression.ipynb ├── CITATION.cff ├── LICENSE ├── Misinterpreting R-squared.ipynb ├── README.md ├── Regressing on transformed variables.ipynb ├── Statistical missteps-presentation.pdf ├── Statistics pitfalls.ipynb ├── apt.txt ├── pdm.lock ├── pyproject.toml ├── requirements.txt └── runtime.txt /.codespellrc: -------------------------------------------------------------------------------- 1 | [codespell] 2 | skip = **/*.ipynb 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frank1010111/statistical_missteps/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frank1010111/statistical_missteps/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /Applying algebra to regression.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frank1010111/statistical_missteps/HEAD/Applying algebra to regression.ipynb -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frank1010111/statistical_missteps/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frank1010111/statistical_missteps/HEAD/LICENSE -------------------------------------------------------------------------------- /Misinterpreting R-squared.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frank1010111/statistical_missteps/HEAD/Misinterpreting R-squared.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frank1010111/statistical_missteps/HEAD/README.md -------------------------------------------------------------------------------- /Regressing on transformed variables.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frank1010111/statistical_missteps/HEAD/Regressing on transformed variables.ipynb -------------------------------------------------------------------------------- /Statistical missteps-presentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frank1010111/statistical_missteps/HEAD/Statistical missteps-presentation.pdf -------------------------------------------------------------------------------- /Statistics pitfalls.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frank1010111/statistical_missteps/HEAD/Statistics pitfalls.ipynb -------------------------------------------------------------------------------- /apt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frank1010111/statistical_missteps/HEAD/apt.txt -------------------------------------------------------------------------------- /pdm.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frank1010111/statistical_missteps/HEAD/pdm.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frank1010111/statistical_missteps/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frank1010111/statistical_missteps/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.9 2 | 3 | --------------------------------------------------------------------------------