AMR 2.1.1.9154__py3-none-any.whl → 2.1.1.9156__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.
- AMR/__init__.py +2 -0
- AMR/functions.py +6 -0
- {AMR-2.1.1.9154.dist-info → AMR-2.1.1.9156.dist-info}/METADATA +1 -1
- AMR-2.1.1.9156.dist-info/RECORD +7 -0
- AMR-2.1.1.9154.dist-info/RECORD +0 -7
- {AMR-2.1.1.9154.dist-info → AMR-2.1.1.9156.dist-info}/WHEEL +0 -0
- {AMR-2.1.1.9154.dist-info → AMR-2.1.1.9156.dist-info}/top_level.txt +0 -0
AMR/__init__.py
CHANGED
@@ -73,6 +73,8 @@ from .functions import is_disk
|
|
73
73
|
from .functions import as_mic
|
74
74
|
from .functions import is_mic
|
75
75
|
from .functions import rescale_mic
|
76
|
+
from .functions import mic_p50
|
77
|
+
from .functions import mic_p90
|
76
78
|
from .functions import as_mo
|
77
79
|
from .functions import is_mo
|
78
80
|
from .functions import mo_uncertainties
|
AMR/functions.py
CHANGED
@@ -249,6 +249,12 @@ def is_mic(x):
|
|
249
249
|
def rescale_mic(x, *args, **kwargs):
|
250
250
|
"""See our website of the R package for the manual: https://msberends.github.io/AMR/index.html"""
|
251
251
|
return convert_to_python(amr_r.rescale_mic(x, *args, **kwargs))
|
252
|
+
def mic_p50(x, *args, **kwargs):
|
253
|
+
"""See our website of the R package for the manual: https://msberends.github.io/AMR/index.html"""
|
254
|
+
return convert_to_python(amr_r.mic_p50(x, *args, **kwargs))
|
255
|
+
def mic_p90(x, *args, **kwargs):
|
256
|
+
"""See our website of the R package for the manual: https://msberends.github.io/AMR/index.html"""
|
257
|
+
return convert_to_python(amr_r.mic_p90(x, *args, **kwargs))
|
252
258
|
def as_mo(x, *args, **kwargs):
|
253
259
|
"""See our website of the R package for the manual: https://msberends.github.io/AMR/index.html"""
|
254
260
|
return convert_to_python(amr_r.as_mo(x, *args, **kwargs))
|
@@ -0,0 +1,7 @@
|
|
1
|
+
AMR/__init__.py,sha256=UqpCQUNl3dYMu_pH3GQhpU079R0-nb50jBL4bu61NVs,7731
|
2
|
+
AMR/datasets.py,sha256=Jy39LLD1mP-MMPX59mjKQdmKeFz192kMQD3ty4tIFic,2609
|
3
|
+
AMR/functions.py,sha256=jawUqe5TJA_PiQLjKxZwNU4gp1-jzX905zx4oNLF1m8,46736
|
4
|
+
AMR-2.1.1.9156.dist-info/METADATA,sha256=CaMK5kmOAmLcbl_6oC_jZ81UskTRL1PszFiB5zpPg7U,9624
|
5
|
+
AMR-2.1.1.9156.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
6
|
+
AMR-2.1.1.9156.dist-info/top_level.txt,sha256=7K6Mq_X_OHdXOzQM5y06VUadXjYkze6yzufL1d7_6xc,4
|
7
|
+
AMR-2.1.1.9156.dist-info/RECORD,,
|
AMR-2.1.1.9154.dist-info/RECORD
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
AMR/__init__.py,sha256=K_ff87lDCosBLFPk9Jn5-YOhXnXPj-VwAki9v27cjzg,7669
|
2
|
-
AMR/datasets.py,sha256=Jy39LLD1mP-MMPX59mjKQdmKeFz192kMQD3ty4tIFic,2609
|
3
|
-
AMR/functions.py,sha256=wRqV_JW1TBkM_ILXeGUBSJ6R0fWTiMtH3XMp_tRZJUI,46338
|
4
|
-
AMR-2.1.1.9154.dist-info/METADATA,sha256=ynVLx4spjqUWMJkH-440OJcpVgDY7_VY4SETkTM4ZTI,9624
|
5
|
-
AMR-2.1.1.9154.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
6
|
-
AMR-2.1.1.9154.dist-info/top_level.txt,sha256=7K6Mq_X_OHdXOzQM5y06VUadXjYkze6yzufL1d7_6xc,4
|
7
|
-
AMR-2.1.1.9154.dist-info/RECORD,,
|
File without changes
|
File without changes
|