ccrvam


Nameccrvam JSON
Version 0.6.0 PyPI version JSON
download
home_pagehttps://github.com/DhyeyMavani2003/ccrvam
SummaryPython implementation of Checkerboard Copula Regression-based Visualization and Association Measure
upload_time2025-03-03 04:28:34
maintainerNone
docs_urlNone
authorDhyey Mavani
requires_pythonNone
licenseMIT
keywords ccrvam
VCS
bugtrack_url
requirements numpy scipy pytest pandas matplotlib coverage
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # ccrvam

> Python implementation of Checkerboard Copula Regression-based Visualization and Association Measure (CCRVAM)

[![PyPI version](https://badge.fury.io/py/ccrvam.svg)](https://badge.fury.io/py/ccrvam)
[![build](https://github.com/DhyeyMavani2003/ccrvam/actions/workflows/test.yaml/badge.svg)](https://github.com/DhyeyMavani2003/ccrvam/actions/workflows/test.yaml)
[![Documentation Status](https://readthedocs.org/projects/ccrvam/badge/?version=latest)](https://ccrvam.readthedocs.io/en/latest/?badge=latest)
[![Coverage Status](https://coveralls.io/repos/github/DhyeyMavani2003/ccrvam/badge.svg?branch=main)](https://coveralls.io/github/DhyeyMavani2003/ccrvam?branch=main)
[![Built with PyPi Template](https://img.shields.io/badge/PyPi_Template-v0.7.0-blue.svg)](https://github.com/christophevg/pypi-template)

## Installation

This package (ccrvam) is hosted on PyPi, so for installation add the following line at the top of your Jupyter notebook!

```python
%pip install ccrvam
```

**Now, you should be all set to use it in a Jupyter Notebook!**

Alternatively, if you would like to use it in a project, we recommend you to have a virtual environment for your use of this package, then follow the following workflow. For best practices, it's recommended to use a virtual environment:

1. First, create and activate a virtual environment (Python 3.8+ recommended):

```bash
# Create virtual environment
$ python -m venv ccrvam-env

# Activate virtual environment (Mac/Linux)
$ source ccrvam-env/bin/activate

# Verify you're in the virtual environment
$ which python
```

2. Install package

```bash
$ pip install ccrvam
```

3. To deactivate the virtual environment, when done:

```bash
$ deactivate
```

## Documentation

Visit [Read the Docs](https://ccrvam.readthedocs.org) for the full documentation, including overviews and several examples.

## Examples

For detailed examples in Jupyter Notebooks and beyond (organized by functionality) please refer to our [GitHub repository's examples folder](https://github.com/DhyeyMavani2003/ccrvam/tree/master/examples).

## Features

- Construction of checkerboard copulas from contingency tables and/or list of cases
- Calculation of marginal distributions and CDFs
- Computation of Checkerboard Copula Regression (CCR) and Prediction based on CCR
- Implementation of Checkerboard Copula Regression Association Measure (CCRAM) and the Scaled CCRAM (SCCRAM)
- Bootstrap functionality for CCR-based prediction, CCRAM and SCCRAM
- Permutation testing functionality for CCRAM & SCCRAM
- Vectorized implementations for improved performance
- Rigorous Edge-case Handling & Unit Testing with Pytest 

## Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

## License

This project is licensed under the MIT License - see the LICENSE file for details.



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/DhyeyMavani2003/ccrvam",
    "name": "ccrvam",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "ccrvam",
    "author": "Dhyey Mavani",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/8c/4a/96268afe1c86075cef7b010a1e045b3a2540e68bc67589746ddb76b56bd4/ccrvam-0.6.0.tar.gz",
    "platform": null,
    "description": "# ccrvam\n\n> Python implementation of Checkerboard Copula Regression-based Visualization and Association Measure (CCRVAM)\n\n[![PyPI version](https://badge.fury.io/py/ccrvam.svg)](https://badge.fury.io/py/ccrvam)\n[![build](https://github.com/DhyeyMavani2003/ccrvam/actions/workflows/test.yaml/badge.svg)](https://github.com/DhyeyMavani2003/ccrvam/actions/workflows/test.yaml)\n[![Documentation Status](https://readthedocs.org/projects/ccrvam/badge/?version=latest)](https://ccrvam.readthedocs.io/en/latest/?badge=latest)\n[![Coverage Status](https://coveralls.io/repos/github/DhyeyMavani2003/ccrvam/badge.svg?branch=main)](https://coveralls.io/github/DhyeyMavani2003/ccrvam?branch=main)\n[![Built with PyPi Template](https://img.shields.io/badge/PyPi_Template-v0.7.0-blue.svg)](https://github.com/christophevg/pypi-template)\n\n## Installation\n\nThis package (ccrvam) is hosted on PyPi, so for installation add the following line at the top of your Jupyter notebook!\n\n```python\n%pip install ccrvam\n```\n\n**Now, you should be all set to use it in a Jupyter Notebook!**\n\nAlternatively, if you would like to use it in a project, we recommend you to have a virtual environment for your use of this package, then follow the following workflow. For best practices, it's recommended to use a virtual environment:\n\n1. First, create and activate a virtual environment (Python 3.8+ recommended):\n\n```bash\n# Create virtual environment\n$ python -m venv ccrvam-env\n\n# Activate virtual environment (Mac/Linux)\n$ source ccrvam-env/bin/activate\n\n# Verify you're in the virtual environment\n$ which python\n```\n\n2. Install package\n\n```bash\n$ pip install ccrvam\n```\n\n3. To deactivate the virtual environment, when done:\n\n```bash\n$ deactivate\n```\n\n## Documentation\n\nVisit [Read the Docs](https://ccrvam.readthedocs.org) for the full documentation, including overviews and several examples.\n\n## Examples\n\nFor detailed examples in Jupyter Notebooks and beyond (organized by functionality) please refer to our [GitHub repository's examples folder](https://github.com/DhyeyMavani2003/ccrvam/tree/master/examples).\n\n## Features\n\n- Construction of checkerboard copulas from contingency tables and/or list of cases\n- Calculation of marginal distributions and CDFs\n- Computation of Checkerboard Copula Regression (CCR) and Prediction based on CCR\n- Implementation of Checkerboard Copula Regression Association Measure (CCRAM) and the Scaled CCRAM (SCCRAM)\n- Bootstrap functionality for CCR-based prediction, CCRAM and SCCRAM\n- Permutation testing functionality for CCRAM & SCCRAM\n- Vectorized implementations for improved performance\n- Rigorous Edge-case Handling & Unit Testing with Pytest \n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n## License\n\nThis project is licensed under the MIT License - see the LICENSE file for details.\n\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Python implementation of Checkerboard Copula Regression-based Visualization and Association Measure",
    "version": "0.6.0",
    "project_urls": {
        "Homepage": "https://github.com/DhyeyMavani2003/ccrvam"
    },
    "split_keywords": [
        "ccrvam"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9da8a62cdbb63035e6e0e2cb64980744bba69eb0eae5a455ec2c3e3164a63c61",
                "md5": "16b6cd92d3b2d383c31853ede634f3cf",
                "sha256": "da4c47e8f02e7d9bfa12ec4b3ad4f519bcd1f2dd48155efccd58b0bf054399de"
            },
            "downloads": -1,
            "filename": "ccrvam-0.6.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "16b6cd92d3b2d383c31853ede634f3cf",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 24560,
            "upload_time": "2025-03-03T04:28:32",
            "upload_time_iso_8601": "2025-03-03T04:28:32.170136Z",
            "url": "https://files.pythonhosted.org/packages/9d/a8/a62cdbb63035e6e0e2cb64980744bba69eb0eae5a455ec2c3e3164a63c61/ccrvam-0.6.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8c4a96268afe1c86075cef7b010a1e045b3a2540e68bc67589746ddb76b56bd4",
                "md5": "fbad895137588ec27d94053e3dbd290e",
                "sha256": "25cd998e09461d20d56fac5529b1df072bd4b4cffd545bec9e4f5f4e07636bcb"
            },
            "downloads": -1,
            "filename": "ccrvam-0.6.0.tar.gz",
            "has_sig": false,
            "md5_digest": "fbad895137588ec27d94053e3dbd290e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 22648,
            "upload_time": "2025-03-03T04:28:34",
            "upload_time_iso_8601": "2025-03-03T04:28:34.055787Z",
            "url": "https://files.pythonhosted.org/packages/8c/4a/96268afe1c86075cef7b010a1e045b3a2540e68bc67589746ddb76b56bd4/ccrvam-0.6.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-03-03 04:28:34",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "DhyeyMavani2003",
    "github_project": "ccrvam",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "numpy",
            "specs": []
        },
        {
            "name": "scipy",
            "specs": []
        },
        {
            "name": "pytest",
            "specs": []
        },
        {
            "name": "pandas",
            "specs": []
        },
        {
            "name": "matplotlib",
            "specs": []
        },
        {
            "name": "coverage",
            "specs": []
        }
    ],
    "tox": true,
    "lcname": "ccrvam"
}
        
Elapsed time: 0.41614s