Python implementation of the R package 'statcheck' used for extracting and analysing statistical tests in scientific articles.
Project description
statcheck
Credits
This is a python implementation of the R package statcheck (ver. 1.4.0-beta.4) published by Michèle B. Nuijten [MicheleNuijten]. The original package can by found at her Github
page. The code relies heavily on Nuijten's work and is currently only a python implementation of the original package, with the goal of making it more accessible to the
python community. Both packages are published under the GNU General Public License v3.0. To ensure usability, all the original tests were recoded to the python version.
What is statcheck?
statcheck is a free, open source Python package that can be used to
automatically extract statistical null-hypothesis significant testing
(NHST) results from articles and recompute the p-values based on the
reported test statistic and degrees of freedom to detect possible
inconsistencies.
statcheck is mainly useful for:
- Self-checks: you can use
statcheckto make sure your manuscript doesn’t contain copy-paste errors or other inconsistencies before you submit it to a journal. - Peer review: editors and reviewers can use
statcheckto check submitted manuscripts for statistical inconsistencies. They can ask authors for a correction or clarification before publishing a manuscript. - Research:
statcheckcan be used to automatically extract statistical test results from articles that can then be analyzed. You can for instance investigate whether you can predict statistical inconsistencies (see e.g., Nuijten et al., 2017), or use it to analyze p-value distributions (see e.g., Hartgerink et al., 2016).
How does statcheck work?
The algorithm behind statcheck consists of four basic steps:
- Convert pdf and html articles to plain text files.
- Search the text for instances of NHST results. Specifically,
statcheckcan recognize t-tests, F-tests, correlations, z-tests,-tests, and Q-tests (from meta-analyses) if they are reported completely (test statistic, degrees of freedom, and p-value) and in APA style.
- Recompute the p-value using the reported test statistic and degrees of freedom.
- Compare the reported and recomputed p-value. If the reported
p-value does not match the computed one, the result is marked as
an inconsistency (
Errorin the output). If the reported p-value is significant and the computed is not, or vice versa, the result is marked as a gross inconsistency (DecisionErrorin the output).
statcheck takes into account correct rounding of the test statistic,
and has the option to take into account one-tailed testing. See the
manual for details.
Installation and use
For detailed information about installing and using statcheck, see the
Documentation file in the github repository, or refer to the R documentation.
Installation
pip install statcheck
Example Usage
from statcheck.checkdir import checkPDFdir
dir = 'path/to/pdf/directory'
Res, pRes = checkPDFdir(dir, subdir = False)
# Res is a pandas dataframe with the analysis of statistical results
Res
# pRes is a pandas dataframe with extracted p-values
pRes
Running tests
pip install pytest
pytest tests/
statcheck.io is a web-based interface for statcheck.
Author of the Python implementation
** Hubert Plisiecki **
Citation
---
@misc{MicheleNuijten,
author = {Michèle B. Nuijten},
title = {statcheck},
year = {2021},
url = {{https://github.com/MicheleNuijten/statcheck}}
}
---
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file statcheck-0.0.7.tar.gz.
File metadata
- Download URL: statcheck-0.0.7.tar.gz
- Upload date:
- Size: 64.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c0c83c85cfaeac34365efa688ceac17f668500a342de1637fe4c58f517f4e0ff
|
|
| MD5 |
2f4be218523e2f6191a3153f75f7e8fe
|
|
| BLAKE2b-256 |
f6b5917fd3c654ec26e80b96ba197afdc87d1a516943f687a199df9992aa73b2
|
File details
Details for the file statcheck-0.0.7-py3-none-any.whl.
File metadata
- Download URL: statcheck-0.0.7-py3-none-any.whl
- Upload date:
- Size: 47.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
010197e02e80d88597d4f290fbc2290414867ea39d991571fa8d2ee6231fe3da
|
|
| MD5 |
ca2a514c1c392012d6d3155022ee9399
|
|
| BLAKE2b-256 |
399657fea7f0a3df5ae5f829e6e77fca5baf4558e8c78cc126765d7fba7bd5ce
|