Metadata-Version: 1.2
Name: dvha-stats
Version: 0.2.0
Summary: Simple DICOM tag editor built with wxPython and pydicom
Home-page: https://github.com/cutright/DVHA-Stats
Author: Dan Cutright
Author-email: dan.cutright@gmail.com
Maintainer: Dan Cutright
Maintainer-email: dan.cutright@gmail.com
License: MIT License
Download-URL: https://github.com/cutright/DVHA-Stats/archive/master.zip
Description: dvhastats
        =========
        
        |logo|
        
        
        |build| |pypi| |Docs| |lgtm| |Codecov|
        
        A library of prediction and statistical process control tools. Although based
        on work in `DVH Analytics <http://www.dvhanalytics.com>`__, all tools in this
        library are generic and not specific to radiation oncology. See
        our `documentation <http://dvha-stats.readthedocs.io>`__ for advanced uses.
        
        What does it do?
        ----------------
        * Read data from CSV, supply as numpy array or dict
        * Basic plotting
            * Simple one-variable plots from data
            * Control Charts (Univariate and Multivariate)
            * Heat Maps (correlations, PCA, etc.)
        * Perform Box-Cox transformations
        * Calculate Correlation matrices
        * Perform Multi-Variable Linear Regressions
        * Perform Principal Component Analysis (PCA)
        
        Other information
        -----------------
        
        -  Free software: `MIT license <https://github.com/cutright/DVHA-Stats/blob/master/LICENSE>`__
        -  Documentation: `Read the docs <https://dvha-stats.readthedocs.io>`__
        -  Tested on Python 3.6, 3.7, 3.8
        
        Dependencies
        ------------
        
        -  `scipy <https://scipy.org>`__
        -  `numpy <http://www.numpy.org>`__
        -  `scikit-learn <http://scikit-learn.org>`__
        -  `regressors <https://pypi.org/project/regressors/>`__
        -  `matplotlib <http://matplotlib.org>`__
        
        
        Basic Usage
        ------------
        
        .. code-block:: python
        
            from dvhastats.ui import DVHAStats
            s = DVHAStats("your_data.csv")  # use s = DVHAStats() for test data
        
            >>> s.var_names
            ['V1', 'V2', 'V3', 'V4', 'V5', 'V6']
        
            >>> s.show('V1')  # or s.show(0), can provide index or var_name
        
        |plot|
        
        
        Multivariate Control Chart (w/ non-normal data)
        ###############################################
        .. code-block:: python
        
            ht2_bc = s.hotelling_t2(box_cox=True)
            >>> ht2_bc.show()
        
        |hotelling-t2-bc|
        
        
        Principal Component Analysis (PCA)
        ##################################
        .. code-block:: python
        
            pca = s.pca()
            >>> pca.show()
        
        |pca|
        
        .. |build| image:: https://github.com/cutright/DVHA-Stats/workflows/build/badge.svg
           :target: https://github.com/cutright/DVHA-Stats/actions
           :alt: build
        .. |pypi| image:: https://img.shields.io/pypi/v/dvha-stats.svg
           :target: https://pypi.org/project/dvha-stats
           :alt: PyPI
        .. |lgtm| image:: https://img.shields.io/lgtm/grade/python/g/cutright/DVHA-Stats.svg?logo=lgtm&label=code%20quality
           :target: https://lgtm.com/projects/g/cutright/DVHA-Stats/context:python
           :alt: lgtm
        .. |Codecov| image:: https://codecov.io/gh/cutright/DVHA-Stats/branch/master/graph/badge.svg
           :target: https://codecov.io/gh/cutright/DVHA-Stats
           :alt: Codecov
        .. |Docs| image:: https://readthedocs.org/projects/dvha-stats/badge/?version=latest
           :target: https://dvha-stats.readthedocs.io/en/latest/?badge=latest
           :alt: Documentation Status
        
        .. |plot| image:: https://user-images.githubusercontent.com/4778878/91908372-0c4c2d80-ec71-11ea-9dfc-7c4f6c209542.png
           :width: 350
           :alt: Basic Plot
        
        .. |hotelling-t2-bc| image:: https://user-images.githubusercontent.com/4778878/91908394-179f5900-ec71-11ea-88a0-9c95d714fb4c.png
           :width: 350
           :alt: Multivariate Control Chart w/ Box Cox Transformation
        
        .. |pca| image:: https://user-images.githubusercontent.com/4778878/92050205-16922880-ed52-11ea-9967-d390577380b6.png
           :width: 350
           :alt: Principal Component Analysis
        
        .. |logo| image:: https://user-images.githubusercontent.com/4778878/92505112-351c7780-f1c9-11ea-9b5c-0de1ad2d131d.png
           :width: 400
           :alt: DVHA logo"
        
Keywords: stats,statistical process control,control charts
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: Healthcare Industry
Classifier: Intended Audience :: Science/Research
Classifier: Natural Language :: English
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Operating System :: OS Independent
Classifier: Topic :: Scientific/Engineering :: Medical Science Apps.
Classifier: Topic :: Scientific/Engineering :: Physics
Requires-Python: >3.5
