PyMetaAnalysis 0.2.0__py3-none-any.whl → 0.2.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- meta_analyze/_version.py +1 -1
- {pymetaanalysis-0.2.0.dist-info → pymetaanalysis-0.2.1.dist-info}/METADATA +25 -19
- {pymetaanalysis-0.2.0.dist-info → pymetaanalysis-0.2.1.dist-info}/RECORD +5 -5
- {pymetaanalysis-0.2.0.dist-info → pymetaanalysis-0.2.1.dist-info}/WHEEL +0 -0
- {pymetaanalysis-0.2.0.dist-info → pymetaanalysis-0.2.1.dist-info}/licenses/LICENSE +0 -0
meta_analyze/_version.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: PyMetaAnalysis
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: A pandas-first, auditable meta-analysis library for Python
|
|
5
5
|
Project-URL: Documentation, https://zhaoboding.github.io/PyMetaAnalysis/
|
|
6
6
|
Project-URL: Source, https://github.com/ZhaoboDing/PyMetaAnalysis
|
|
@@ -51,7 +51,7 @@ Description-Content-Type: text/markdown
|
|
|
51
51
|
|
|
52
52
|
[](https://github.com/ZhaoboDing/PyMetaAnalysis/actions/workflows/ci.yml)
|
|
53
53
|
[](https://zhaoboding.github.io/PyMetaAnalysis/)
|
|
54
|
-
[](LICENSE)
|
|
54
|
+
[](https://github.com/ZhaoboDing/PyMetaAnalysis/blob/main/LICENSE)
|
|
55
55
|
|
|
56
56
|
PyMetaAnalysis is an early-stage, pandas-first Python library for conventional
|
|
57
57
|
study-level meta-analysis. It accepts DataFrames, NumPy arrays, and ordinary
|
|
@@ -178,18 +178,18 @@ are descriptive small-study-effect diagnostics, not proof of publication bias.
|
|
|
178
178
|
The complete documentation is published at
|
|
179
179
|
[zhaoboding.github.io/PyMetaAnalysis](https://zhaoboding.github.io/PyMetaAnalysis/).
|
|
180
180
|
|
|
181
|
-
- [Installation](
|
|
182
|
-
- [Getting started](
|
|
183
|
-
- [Input data and row decisions](
|
|
184
|
-
- [Generic](
|
|
185
|
-
- [Choosing methods](
|
|
186
|
-
- [Sensitivity analysis](
|
|
187
|
-
- [Public API](
|
|
188
|
-
- [Validation strategy](
|
|
189
|
-
- [Citation guidance](
|
|
190
|
-
- [R `meta`/`metafor` mapping](
|
|
191
|
-
|
|
192
|
-
An executable [end-to-end notebook](examples/quickstart.ipynb) uses synthetic
|
|
181
|
+
- [Installation](https://zhaoboding.github.io/PyMetaAnalysis/installation/)
|
|
182
|
+
- [Getting started](https://zhaoboding.github.io/PyMetaAnalysis/getting-started/)
|
|
183
|
+
- [Input data and row decisions](https://zhaoboding.github.io/PyMetaAnalysis/guides/input-data/)
|
|
184
|
+
- [Generic](https://zhaoboding.github.io/PyMetaAnalysis/guides/generic-effects/), [binary](https://zhaoboding.github.io/PyMetaAnalysis/guides/binary-outcomes/), and [continuous](https://zhaoboding.github.io/PyMetaAnalysis/guides/continuous-outcomes/) guides
|
|
185
|
+
- [Choosing methods](https://zhaoboding.github.io/PyMetaAnalysis/guides/method-selection/) and [statistical formulas](https://zhaoboding.github.io/PyMetaAnalysis/methods/statistical-methods/)
|
|
186
|
+
- [Sensitivity analysis](https://zhaoboding.github.io/PyMetaAnalysis/guides/sensitivity-analysis/) and [plotting](https://zhaoboding.github.io/PyMetaAnalysis/guides/plotting/)
|
|
187
|
+
- [Public API](https://zhaoboding.github.io/PyMetaAnalysis/reference/api/), [result objects](https://zhaoboding.github.io/PyMetaAnalysis/reference/results/), and [report schema](https://zhaoboding.github.io/PyMetaAnalysis/reference/report-schema/)
|
|
188
|
+
- [Validation strategy](https://zhaoboding.github.io/PyMetaAnalysis/validation/) and [scope/limitations](https://zhaoboding.github.io/PyMetaAnalysis/limitations/)
|
|
189
|
+
- [Citation guidance](https://zhaoboding.github.io/PyMetaAnalysis/citation/)
|
|
190
|
+
- [R `meta`/`metafor` mapping](https://zhaoboding.github.io/PyMetaAnalysis/guides/r-interoperability/)
|
|
191
|
+
|
|
192
|
+
An executable [end-to-end notebook](https://github.com/ZhaoboDing/PyMetaAnalysis/blob/main/examples/quickstart.ipynb) uses synthetic
|
|
193
193
|
data to demonstrate analysis, provenance, reporting, sensitivity, and plotting.
|
|
194
194
|
|
|
195
195
|
Build the complete site locally with:
|
|
@@ -207,16 +207,22 @@ edge cases, and committed R `metafor` reference fixtures. CI covers Python
|
|
|
207
207
|
distribution builds.
|
|
208
208
|
|
|
209
209
|
This is independent cross-software validation, not a formal external
|
|
210
|
-
statistical audit. See
|
|
210
|
+
statistical audit. See
|
|
211
|
+
[validation](https://zhaoboding.github.io/PyMetaAnalysis/validation/) for exact
|
|
212
|
+
coverage.
|
|
211
213
|
|
|
212
214
|
## Contributing
|
|
213
215
|
|
|
214
|
-
See
|
|
215
|
-
[
|
|
216
|
+
See
|
|
217
|
+
[CONTRIBUTING.md](https://github.com/ZhaoboDing/PyMetaAnalysis/blob/main/CONTRIBUTING.md)
|
|
218
|
+
and the full
|
|
219
|
+
[development guide](https://zhaoboding.github.io/PyMetaAnalysis/development/).
|
|
220
|
+
Statistical changes require formula
|
|
216
221
|
documentation, boundary tests, and an independent comparison where available.
|
|
217
222
|
|
|
218
|
-
Security-sensitive reports should follow
|
|
223
|
+
Security-sensitive reports should follow
|
|
224
|
+
[SECURITY.md](https://github.com/ZhaoboDing/PyMetaAnalysis/blob/main/SECURITY.md).
|
|
219
225
|
|
|
220
226
|
## License
|
|
221
227
|
|
|
222
|
-
[MIT](LICENSE)
|
|
228
|
+
[MIT](https://github.com/ZhaoboDing/PyMetaAnalysis/blob/main/LICENSE)
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
meta_analyze/__init__.py,sha256=POInICUoVRrqR7s9sgJReHsbxBYNNlqagJDduHWC-3I,1602
|
|
2
|
-
meta_analyze/_version.py,sha256=
|
|
2
|
+
meta_analyze/_version.py,sha256=bV7jlwuImq2OrGXG_x4vGXNic3lNrNcFEgpc6aKy37M,77
|
|
3
3
|
meta_analyze/api.py,sha256=pMMMzsKkiBc_3vvNxeqjZG3Rs3RJpyVDqr7BflhQaak,13080
|
|
4
4
|
meta_analyze/binary_api.py,sha256=kH_1zuAshRCJ_MjbbPt30CmMAPr49N2hASZmODnMaqM,18664
|
|
5
5
|
meta_analyze/config.py,sha256=IL8VX0xDRv18giwbk2m-P_XjBjOo_GsN_B-H4-C7s8E,831
|
|
@@ -25,7 +25,7 @@ meta_analyze/plotting/_utils.py,sha256=3vg-0Wtjlf7LKpXkw2sNnkLNMAS83K_SwxXaneT74
|
|
|
25
25
|
meta_analyze/plotting/forest.py,sha256=NkqcJC7HLfDzl-fW2rNEeH2sozCVpZwsjFuPWFYVNKs,6088
|
|
26
26
|
meta_analyze/plotting/funnel.py,sha256=Mdy1O5uVw4OZF8PvXiDyG7AMANz7vkef9ru-D61_k1Q,5577
|
|
27
27
|
meta_analyze/plotting/subgroup_forest.py,sha256=hEIDtmme2javG6YgsHobAS5EK0lEoe07N0NweU9JDdg,8341
|
|
28
|
-
pymetaanalysis-0.2.
|
|
29
|
-
pymetaanalysis-0.2.
|
|
30
|
-
pymetaanalysis-0.2.
|
|
31
|
-
pymetaanalysis-0.2.
|
|
28
|
+
pymetaanalysis-0.2.1.dist-info/METADATA,sha256=BalGMtJG7h_7DplNp1lWzw35Y8go2b_EkasFPstVTMY,9040
|
|
29
|
+
pymetaanalysis-0.2.1.dist-info/WHEEL,sha256=lCkmxWfQsSc9CfIClYeavTdQeEX2toPqufh9gI35EQA,87
|
|
30
|
+
pymetaanalysis-0.2.1.dist-info/licenses/LICENSE,sha256=CBE_u7LfEteKb_1My8s9obP0YkjJVzcWlgHSDiqa9ts,1084
|
|
31
|
+
pymetaanalysis-0.2.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|