Metadata-Version: 2.1
Name: grgr
Version: 0.1.0
Summary: `grgr` is a wrapper library for using `ggplot2` from `python`.
Home-page: https://github.com/7cm-diameter/grgr/wiki
License: MIT
Author: 7cm-diameter
Author-email: from.this.ridiculous.loop@gmail.com
Requires-Python: >=3.7.1,<3.11
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: numpy (>=1.21.2,<2.0.0)
Requires-Dist: pandas (>=1.3.2,<2.0.0)
Requires-Dist: rpy2 (>=3.4.5,<4.0.0)
Project-URL: Repository, https://github.com/7cm-diameter/grgr
Description-Content-Type: text/markdown

# grgr
`grgr` is a library for using `ggplot2` from `python`.  

`grgr` can create figures in `python` using grammar similar to `ggplot2`. `python` does not create the figure itself, but generates a code that can be executed in `R`, and executes it in R to create the figure. In other words, `grgr` is an interface from `python` to `R`'s `ggplot2`. Therefore, this library directly depends on `R` and `ggplot2`.

# Quickstart
You can install `grgr` through `pip` by running `pip install grgr`. In order to use `grgr`, you need to have `R` and `ggplot2` installed. Please make sure that these are installed beforehand. Once the installation is complete, you can draw a figure in `python` with the grammer same as `ggplot2`. A basic usage example can be found in `example/basic.py`.

