Metadata-Version: 2.1
Name: onorm
Version: 0.1.0
Summary: 
License: Apache-2.0
Author: Drew Dimmery
Author-email: drew.dimmery@gmail.com
Requires-Python: >=3.12,<4.0
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: numpy (>=1.22)
Description-Content-Type: text/markdown

# Online Normalization (onorm)

[![ci](https://github.com/ddimmery/onorm/actions/workflows/ci.yml/badge.svg)](https://github.com/ddimmery/onorm/actions/workflows/ci.yml)


```python
import numpy as np
import pandas as pd
from plotnine import aes, geom_point, ggplot, theme_minimal
```


```python
n = 100
d = 2

X = np.random.normal(size=(n, d))
df = pd.DataFrame(X, columns=["X1", "X2"])

ggplot(df, aes("X1", "X2")) + geom_point() + theme_minimal()
```


    
![png](README_files/README_2_0.png)
    


