Metadata-Version: 2.1
Name: dvha-stats
Version: 0.1.1
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: <a>
          <img src="https://user-images.githubusercontent.com/4778878/30754005-b7a7e808-9f86-11e7-8b0f-79d1006babdf.jpg" width='480' alt="DVHA logo"/>
        </a>
        
        ---------  
        # DVHA Stats
        A library of prediction and statistical process control tools. Although based 
        on work in [DVH Analytics](http://dvhanalytics.com), all tools in this library 
        are generic and not specifically applicable to any one field.
        
        [![build](https://github.com/cutright/DVHA-Stats/workflows/build/badge.svg)](https://github.com/cutright/DVHA-Stats/actions)
        <a href="https://pypi.org/project/dvha-stats/">
          <img src="https://img.shields.io/pypi/v/dvha-stats.svg" alt="PyPi Version" /></a>
        <a href="https://lgtm.com/projects/g/cutright/DVHA-Stats/context:python">
          <img src="https://img.shields.io/lgtm/grade/python/g/cutright/DVHA-Stats.svg?logo=lgtm&label=code%20quality" alt="LGTM Code Quality" /></a>
        <a href="https://codecov.io/gh/cutright/DVHA-Stats">
          <img src="https://codecov.io/gh/cutright/DVHA-Stats/branch/master/graph/badge.svg" />
        </a>
        
        ### What does it do?
        * Read data from CSV or supply as numpy array 
        * Plotting
            * Simple one-variable plots from data
            * Control Charts
            * Multivariate Control Charts
        * Perform Box-Cox transformations
        * Calculate Pearson-R correlation matrices
        * Perform Multi-Variable Linear Regressions
        
        ### Coming Soon:
        - [X] PyPI installation
        - [ ] Multi-Variable Regression plots
        - [ ] Backward-elimination for Multi-Variable Linear Regressions
        - [ ] Risk-Adjusted Control Charts using Multi-Variable Linear Regressions
        - [ ] Machine learning regressions based on scikit-learn
        - [X] Complete unit testing
        
        **NOTE**: This project is brand new and very much under construction.
        
        Source-Code Installation
        ---------
        ~~~
        pip install dvha-stats
        ~~~
        or
        ~~~
        pip install git+https://github.com/cutright/DVHA-Stats.git
        ~~~
        Or clone the project and run:
        ~~~
        python setup.py install
        ~~~
        
        Dependencies
        ---------
        * [Python](https://www.python.org) >3.5
        * [SciPy](https://scipy.org)
        * [NumPy](http://numpy.org)
        * [Scikit-learn](http://scikit-learn.org)
        * [regressors](https://pypi.org/project/regressors/)
        * [matplotlib](http://matplotlib.org/)
        
        ### Initialize and Plot Data
        ~~~
        >>> from dvhastats.stats import DVHAStats
        >>> s = DVHAStats("tests/testdata/multivariate_data.csv")
        >>> s.get_data_by_var_name('V1')
        array([56.5, 48.1, 48.3, 65.1, 47.1, 49.9, 49.5, 48.9, 35.5, 44.5, 40.3,
               43.5, 43.7, 47.5, 39.9, 42.9, 37.9, 48.7, 41.3, 47.1, 35.9, 46.5,
               45.1, 24.3, 43.5, 45.1, 46.3, 41.1, 35.5, 41.1, 37.3, 42.1, 47.1,
               46.5, 43.3, 45.9, 39.5, 50.9, 44.1, 40.1, 45.7, 20.3, 46.1, 43.7,
               43.9, 36.5, 45.9, 48.9, 44.7, 38.1,  6.1,  5.5, 45.1, 46.5, 48.9,
               48.1, 45.7, 57.1, 35.1, 46.5, 29.5, 41.5, 53.3, 45.3, 41.9, 45.9,
               43.1, 43.9, 46.1])
        
        >>> s.show('V1')  # or s.show(0), can provide index or var_name
        ~~~
        <img src='https://user-images.githubusercontent.com/4778878/91908372-0c4c2d80-ec71-11ea-9dfc-7c4f6c209542.png' align='center' width='350' alt="Data Plot">
        
        ### Univariate Control Chart
        ~~~
        >>> ucc = s.univariate_control_charts()
        >>> print(ucc.keys())
        dict_keys(['V1', 'V2', 'V3', 'V4', 'V5', 'V6'])
        
        >>> print(uni_cc['V1'])
        center_line: 42.845
        control_limits: 22.210, 63.480
        out_of_control: [ 3 41 50 51]
        
        ucc["V1"].show()  # or ucc[0].show(), can provide index or var_name
        ~~~
        <img src='https://user-images.githubusercontent.com/4778878/91908380-0fdfb480-ec71-11ea-9394-d029a8a6727e.png' align='center' width='350' alt="Univariate Control Chart">
        
        ### Hotelling T^2
        Example to calculate the Hotelling T^2 values from a csv file
        ~~~
        >>> ht2 = s.hotelling_t2()
        >>> print(ht2)
        Q: [ 5.75062092  3.80141786  3.67243782 18.80124504  2.03849294 18.15447155
          4.54475048 10.40783971  3.60614333  4.03138994  6.45171623  4.60475303
          2.29185301 15.7891342   3.0102578   6.36058098  5.56477106  3.92950273
          1.70534379  2.14021007  7.3839626   1.16554558  7.89636669 20.13613585
          3.76034723  0.93179106  2.05542886  2.65257506  1.31049764  1.59880892
          2.13839258  3.33331329  4.01060102  2.71837612 10.0744586   4.50776545
          1.87955428  7.13423455  4.1773818   3.70446025  3.49570988 11.52822658
          5.874624    2.34515306  2.71884639  2.58457841  3.2591779   4.69554484
          9.1358149   2.64106059 21.21960037 22.6229493   1.55545875  2.29606726
          3.96926714  2.69041382  1.47639788 17.83532339  4.03627833  1.78953536
         15.7485067   1.56110637  2.53753085  2.04243193  6.20630748 14.39527077
          9.88243129  3.70056854  4.92888799]
        center_line: 5.375
        control_limits: 0, 13.555
        out_of_control: [ 3  5 13 23 50 51 57 60 65]
        
        >>> ht2.show()
        ~~~
        
        <img src='https://user-images.githubusercontent.com/4778878/91908391-166e2c00-ec71-11ea-941b-321e01f56542.png' align='center' width='350' alt="Multivariate Control Chart">
        
        ### Hotelling T^2 with Box-Cox Transformation
        Example to calculate the Hotelling T^2 values and apply a Box-Cox transformation
        ~~~
        >>> ht2_bc = s.hotelling_t2(box_cox=True)
        >>> ht2_bc.show()
        ~~~
        
        <img src='https://user-images.githubusercontent.com/4778878/91908394-179f5900-ec71-11ea-88a0-9c95d714fb4c.png' align='center' width='350' alt="Multivariate Control Chart with Box-Cox Transformation">
        
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
Description-Content-Type: text/markdown
