descripstats


Namedescripstats JSON
Version 0.0.2 PyPI version JSON
download
home_pagehttps://github.com/shoukewei/descripstats
SummaryA descriptive statistics package
upload_time2022-12-21 07:30:47
maintainer
docs_urlNone
authorShouke Wei
requires_python
licenseMIT License
keywords python descriptive statistics more measures pandas describe pandas dataframe
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # descripstats

This is a small package to help add more descriptive statistics to the default `describe()` of Pandas, which include:   
- mad: mean absolute deviation
- variance: variance
- sem: standard error of the mean
- sum: sum
- skewness: skewness
- kurtosis: kurtosis

Developed by Shouke Wei from Deepsim Academy, Deepsim Intelligence Technology Inc. (c) 2022

## Install the package
```python
pip install descripstats
```

## import the package
```python
from descripstats import Describe
```
then use the `Describe()` directly. Or 
```python
import descripstats as ds
```
then use `ds.Discribe()`

## Document
An example: https://github.com/shoukewei/descripstats/blob/main/docs/example.ipynb



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/shoukewei/descripstats",
    "name": "descripstats",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "python,descriptive statistics,more measures,pandas describe,pandas dataframe",
    "author": "Shouke Wei",
    "author_email": "shouke.wei@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/fd/14/aa2eb593479a7b3f2d4e2c9a3f840aea9766b0b00124e46f7e3c0212c562/descripstats-0.0.2.tar.gz",
    "platform": null,
    "description": "# descripstats\n\nThis is a small package to help add more descriptive statistics to the default `describe()` of Pandas, which include:   \n- mad: mean absolute deviation\n- variance: variance\n- sem: standard error of the mean\n- sum: sum\n- skewness: skewness\n- kurtosis: kurtosis\n\nDeveloped by Shouke Wei from Deepsim Academy, Deepsim Intelligence Technology Inc. (c) 2022\n\n## Install the package\n```python\npip install descripstats\n```\n\n## import the package\n```python\nfrom descripstats import Describe\n```\nthen use the `Describe()` directly. Or \n```python\nimport descripstats as ds\n```\nthen use `ds.Discribe()`\n\n## Document\nAn example: https://github.com/shoukewei/descripstats/blob/main/docs/example.ipynb\n\n\n",
    "bugtrack_url": null,
    "license": "MIT License",
    "summary": "A descriptive statistics package",
    "version": "0.0.2",
    "split_keywords": [
        "python",
        "descriptive statistics",
        "more measures",
        "pandas describe",
        "pandas dataframe"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "6e709dca9edbb10a540a739ecc6bd816",
                "sha256": "d1f556464e688ecce0c8ea36749356fa554d9d6c0ef5d29bbdecda01706e8565"
            },
            "downloads": -1,
            "filename": "descripstats-0.0.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "6e709dca9edbb10a540a739ecc6bd816",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 3364,
            "upload_time": "2022-12-21T07:30:45",
            "upload_time_iso_8601": "2022-12-21T07:30:45.984140Z",
            "url": "https://files.pythonhosted.org/packages/b8/23/caf93df3590d94940043dc7b69d4b6d9dcdfb7885313750c99babe05b69d/descripstats-0.0.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "815d4120eac8b406aea8809a95663558",
                "sha256": "96e24eae6c74e216c619fb7577d3eafb77089e20e83098e1df3e84e7312e1872"
            },
            "downloads": -1,
            "filename": "descripstats-0.0.2.tar.gz",
            "has_sig": false,
            "md5_digest": "815d4120eac8b406aea8809a95663558",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 3065,
            "upload_time": "2022-12-21T07:30:47",
            "upload_time_iso_8601": "2022-12-21T07:30:47.851611Z",
            "url": "https://files.pythonhosted.org/packages/fd/14/aa2eb593479a7b3f2d4e2c9a3f840aea9766b0b00124e46f7e3c0212c562/descripstats-0.0.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-12-21 07:30:47",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "shoukewei",
    "github_project": "descripstats",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "descripstats"
}
        
Elapsed time: 0.01951s