Metadata-Version: 2.1
Name: data-profile-viewer
Version: 0.1.1
Summary: Data Profile Viewer tool. Enables the exploration of data profile in Jupyter Notebooks
Home-page: https://github.com/soniacq/DataProfileVis
Author: Sonia Castelo
Author-email: s.castelo@nyu.edu
License: UNKNOWN
Description: # DataProfileVis
        
        Data profile visualization tool is compatible with Jupyter Notebooks. Supports the metadata format generated by datamart-profiler library.
        
        ![System screen](https://github.com/soniacq/DataProfileVis/blob/master/imgs/data_profile_viewer.png)
        
        ## Demo
        
        In Jupyter Notebook:
        ~~~~
        import DataProfileViewer
        data = DataProfileViewer.get_lifeexpectancy_data()
        DataProfileViewer.plot_profiler(data)
        ~~~~
        
        ## Install
        
        ### Option 1: install via pip:
        ~~~~
        pip install data-profile-viewer
        pip install datamart-profiler
        ~~~~
        
        ## Data Profile exploration
        
        ~~~~
        import DataProfileViewer
        import datamart_profiler
        ~~~~
        
        In a jupyter notebook, load the output_file 
        
        ~~~~
        metadata = datamart_profiler.process_dataset('lifeexpectancydata.csv', include_sample=True, plots=True)
        ~~~~
        
        and then plot it using:
        
        ~~~~
        DataProfileViewer.plot_profiler(metadata)
        ~~~~
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
