Metadata-Version: 2.4
Name: rpy_symmetry
Version: 0.3.0
Summary: Light weight bridge from `R` to `python` of the [`symmetry` R-module](https://cran.r-project.org/web/packages/symmetry).
Author: Joran R. Angevaare
Maintainer: Joran R. Angevaare
License: MIT
Project-URL: homepage, https://github.com/JoranAngevaare/rpy_symmetry
Project-URL: documentation, https://github.com/JoranAngevaare/rpy_symmetry/blob/master/examples/Example.ipynb
Project-URL: repository, https://github.com/JoranAngevaare/rpy_symmetry
Classifier: Intended Audience :: Science/Research
Classifier: Development Status :: 5 - Production/Stable
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Intended Audience :: Science/Research
Classifier: Programming Language :: Python :: Implementation :: CPython
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: rpy2
Provides-Extra: test
Requires-Dist: coverage; extra == "test"
Requires-Dist: coveralls; extra == "test"
Requires-Dist: ipython; extra == "test"
Requires-Dist: matplotlib; extra == "test"
Requires-Dist: nbmake; extra == "test"
Requires-Dist: pytest; extra == "test"
Requires-Dist: tqdm; extra == "test"

# `Rpy_symmetry`
[![Coverage Status](https://coveralls.io/repos/github/JoranAngevaare/rpy_symmetry/badge.svg)](https://coveralls.io/github/JoranAngevaare/rpy_symmetry)
[![PyPI version shields.io](https://img.shields.io/pypi/v/orpy_symmetry.svg)](https://pypi.python.org/pypi/rpy_symmetry/)
[![Python Versions](https://img.shields.io/pypi/pyversions/rpy_symmetry.svg)](https://pypi.python.org/pypi/rpy_symmetry)
[![PyPI downloads](https://img.shields.io/pypi/dm/rpy_symmetry.svg)](https://pypistats.org/packages/rpy_symmetry)

Light weight bridge from `R` to `python` of the [`symmetry` R-module](https://cran.r-project.org/web/packages/symmetry).

By default, the Symmetry test uses the one from:

    Mira A (1999) Distribution-free test for symmetry based on Bonferroni's measure. J Appl Stat 26(8):959–972. https://doi.org/10.1080/02664769921963


## Installation \ Requirements
`R` needs to be, for example using conda
```
conda install -c conda-forge r-base
```
or mamba:
```
mamba install -c conda-forge r-base
```
Then, one can simply install using pipy:
```
pip install rpy_symmetry
```


The python interface is built on [`rpy2`](https://rpy2.github.io/), which will be automatically be installed as one of the requirements.

## Examples
See example notebook
