mixmetapy 0.1.0__tar.gz
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.
- mixmetapy-0.1.0/CHANGELOG.md +7 -0
- mixmetapy-0.1.0/CITATION.cff +51 -0
- mixmetapy-0.1.0/LICENSE +674 -0
- mixmetapy-0.1.0/MANIFEST.in +6 -0
- mixmetapy-0.1.0/PKG-INFO +122 -0
- mixmetapy-0.1.0/README.md +93 -0
- mixmetapy-0.1.0/pyproject.toml +46 -0
- mixmetapy-0.1.0/setup.cfg +4 -0
- mixmetapy-0.1.0/src/mixmetapy/__init__.py +23 -0
- mixmetapy-0.1.0/src/mixmetapy/model.py +374 -0
- mixmetapy-0.1.0/src/mixmetapy.egg-info/PKG-INFO +122 -0
- mixmetapy-0.1.0/src/mixmetapy.egg-info/SOURCES.txt +18 -0
- mixmetapy-0.1.0/src/mixmetapy.egg-info/dependency_links.txt +1 -0
- mixmetapy-0.1.0/src/mixmetapy.egg-info/requires.txt +6 -0
- mixmetapy-0.1.0/src/mixmetapy.egg-info/top_level.txt +1 -0
- mixmetapy-0.1.0/tests/conftest.py +13 -0
- mixmetapy-0.1.0/tests/fixtures/mixmeta.json +1407 -0
- mixmetapy-0.1.0/tests/test_mixmeta.py +98 -0
- mixmetapy-0.1.0/tests/test_standalone.py +46 -0
- mixmetapy-0.1.0/tools/make_fixtures.R +71 -0
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## 0.1.0 (unreleased)
|
|
4
|
+
|
|
5
|
+
First release as a standalone package. The code is the `meta` module of dlnmpy 0.7.0 with the two DLNM-specific helpers (`stack_reduced`, `predict_reduced`) left behind in dlnmpy; the numerical code, the R fixtures and their tolerances are unchanged, and the git history of the module was carried over.
|
|
6
|
+
|
|
7
|
+
Licensed GPL-3.0-or-later, as R's `mixmeta` is `GPL (>= 3)`. Inside dlnmpy (0.3.0 to 0.7.0) this code was released as GPL-2.0-or-later, dlnmpy's licence, which was not compatible with deriving it from a GPL-3 package; the standalone package corrects that.
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
cff-version: 1.2.0
|
|
2
|
+
message: "If you use mixmetapy, please cite it as below, together with the methods papers listed in the README."
|
|
3
|
+
title: "mixmetapy: multivariate meta-analysis in Python"
|
|
4
|
+
type: software
|
|
5
|
+
version: 0.1.0
|
|
6
|
+
date-released: 2026-09-18
|
|
7
|
+
license: GPL-3.0-or-later
|
|
8
|
+
repository-code: "https://github.com/Logic06183/mixmetapy"
|
|
9
|
+
authors:
|
|
10
|
+
- family-names: Parker
|
|
11
|
+
given-names: Craig
|
|
12
|
+
keywords:
|
|
13
|
+
- multivariate meta-analysis
|
|
14
|
+
- meta-regression
|
|
15
|
+
- mixed-effects models
|
|
16
|
+
- BLUP
|
|
17
|
+
references:
|
|
18
|
+
- type: article
|
|
19
|
+
title: "Multivariate meta-analysis for non-linear and other multi-parameter associations"
|
|
20
|
+
authors:
|
|
21
|
+
- family-names: Gasparrini
|
|
22
|
+
given-names: Antonio
|
|
23
|
+
- family-names: Armstrong
|
|
24
|
+
given-names: Ben
|
|
25
|
+
- family-names: Kenward
|
|
26
|
+
given-names: Michael G.
|
|
27
|
+
journal: "Statistics in Medicine"
|
|
28
|
+
year: 2012
|
|
29
|
+
volume: 31
|
|
30
|
+
issue: 29
|
|
31
|
+
start: 3821
|
|
32
|
+
end: 3839
|
|
33
|
+
doi: 10.1002/sim.5471
|
|
34
|
+
- type: article
|
|
35
|
+
title: "An extended mixed-effects framework for meta-analysis"
|
|
36
|
+
authors:
|
|
37
|
+
- family-names: Sera
|
|
38
|
+
given-names: Francesco
|
|
39
|
+
- family-names: Armstrong
|
|
40
|
+
given-names: Ben
|
|
41
|
+
- family-names: Blangiardo
|
|
42
|
+
given-names: Marta
|
|
43
|
+
- family-names: Gasparrini
|
|
44
|
+
given-names: Antonio
|
|
45
|
+
journal: "Statistics in Medicine"
|
|
46
|
+
year: 2019
|
|
47
|
+
volume: 38
|
|
48
|
+
issue: 29
|
|
49
|
+
start: 5429
|
|
50
|
+
end: 5444
|
|
51
|
+
doi: 10.1002/sim.8362
|