Metadata-Version: 2.1
Name: eri
Version: 0.1.4
Summary: Common functionality for data science at ERI
Home-page: http://elderresearch.com/
Author: Zach Lamberty
Author-email: zach.lamberty@elderresearch.com
License: MIT
Description: # ERIPY
        
        This package contains commonly useful functions and modules for data science purposes at Elder Research, Inc.
        
        
        ## Submodules
        
        What is provided here is simply a high-level discussion of what is avilable in `eri`. For detailed instructions, please refer to the sub-module-level `README` files, and, of course, the function documentation. If any of the above does not exist, please seek out the author and shame them mercilessly
        
        
        ### `eri.clean`
        
        Useful functions for cleaning your data (usually assumes `pandas` data frames).
        
        
        ### `eri.config`
        
        Shared configuration details.
        
        
        ### `eri.html`
        
        HTML parsing and munging utilities.
        
        
        ### `eri.validate`
        
        Useful functions for validating the data we have (often just logging useful facts about a particular dataframe).
        
        
        ## Testing
        
        to test, install `pytest` and `coverage` and then run the following:
        
        ``` python
        # run all tests
        coverage run -m pytest
        ```
        
        ``` python
        # print coverage statistics
        coverage report -m
        ```
        
Keywords: data science
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Provides-Extra: test
