onorm


Nameonorm JSON
Version 0.1.0 PyPI version JSON
download
home_pageNone
SummaryNone
upload_time2024-08-13 08:30:45
maintainerNone
docs_urlNone
authorDrew Dimmery
requires_python<4.0,>=3.12
licenseApache-2.0
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # 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)
    


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "onorm",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4.0,>=3.12",
    "maintainer_email": null,
    "keywords": null,
    "author": "Drew Dimmery",
    "author_email": "drew.dimmery@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/f5/5e/7e5b00d166e912bfebf540f8bb69874cac03a9549fef7555658c0d74e086/onorm-0.1.0.tar.gz",
    "platform": null,
    "description": "# Online Normalization (onorm)\n\n[![ci](https://github.com/ddimmery/onorm/actions/workflows/ci.yml/badge.svg)](https://github.com/ddimmery/onorm/actions/workflows/ci.yml)\n\n\n```python\nimport numpy as np\nimport pandas as pd\nfrom plotnine import aes, geom_point, ggplot, theme_minimal\n```\n\n\n```python\nn = 100\nd = 2\n\nX = np.random.normal(size=(n, d))\ndf = pd.DataFrame(X, columns=[\"X1\", \"X2\"])\n\nggplot(df, aes(\"X1\", \"X2\")) + geom_point() + theme_minimal()\n```\n\n\n    \n![png](README_files/README_2_0.png)\n    \n\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": null,
    "version": "0.1.0",
    "project_urls": null,
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "77dc869046c277bd345413f3412b0f2612a62a6ac0001300ecc2f87297140340",
                "md5": "33ca0bdb10894090c0f6c0db1505df8d",
                "sha256": "a1aa3b693c4f55110ebe7c4c400e6e73b0bcd62d188463a95ea4cf6fffe57f90"
            },
            "downloads": -1,
            "filename": "onorm-0.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "33ca0bdb10894090c0f6c0db1505df8d",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0,>=3.12",
            "size": 6353,
            "upload_time": "2024-08-13T08:30:44",
            "upload_time_iso_8601": "2024-08-13T08:30:44.375275Z",
            "url": "https://files.pythonhosted.org/packages/77/dc/869046c277bd345413f3412b0f2612a62a6ac0001300ecc2f87297140340/onorm-0.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f55e7e5b00d166e912bfebf540f8bb69874cac03a9549fef7555658c0d74e086",
                "md5": "75413d8cd24a829984d0d96885bae424",
                "sha256": "58bcfa0c2e3e2b55c99a37fd243bd28c0e8c31bd064a77100decdcb0f5c7284d"
            },
            "downloads": -1,
            "filename": "onorm-0.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "75413d8cd24a829984d0d96885bae424",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.12",
            "size": 5849,
            "upload_time": "2024-08-13T08:30:45",
            "upload_time_iso_8601": "2024-08-13T08:30:45.551763Z",
            "url": "https://files.pythonhosted.org/packages/f5/5e/7e5b00d166e912bfebf540f8bb69874cac03a9549fef7555658c0d74e086/onorm-0.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-08-13 08:30:45",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "onorm"
}
        
Elapsed time: 2.02851s