Metadata-Version: 2.1
Name: datasets-summarizer
Version: 0.1.0
Summary: Datasets Summary Viewer. Enables the exploration of dataset search results in Jupyter Notebooks
Home-page: https://github.com/soniacq/DatasetsVis
Author: Sonia Castelo
Author-email: s.castelo@nyu.edu
License: UNKNOWN
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
Requires-Dist: python-dateutil
Requires-Dist: numpy
Requires-Dist: scipy
Requires-Dist: scikit-learn
Requires-Dist: networkx
Requires-Dist: notebook
Requires-Dist: datamart-profiler (>=0.8)
Requires-Dist: pandas

# DatasetsSummarizer

Datasets Summarizer is compatible with Jupyter Notebooks. Need the x and y values based in any similarity metrics to generated the similarity plot between datasets. Supports the metadata format generated by [datamart-profiler](https://docs.auctus.vida-nyu.org/python/datamart-profiler.html#) library to generate the Detail View to explore each dataset.


![System screen](https://github.com/soniacq/DatasetsVis/blob/main/DatasetsSummarizer/imgs/datasets_summarizer_view.png)

( Click one dataset from the list of results to open the Detail View.)

## Demo

In Jupyter Notebook:
```Python
import DatasetsSummarizer
data = DatasetsSummarizer.get_taxi_data()
DatasetsSummarizer.plot_datasets_summary(data)
```

## Install

### Option 1: install via pip:
~~~~
pip install datasets-summarizer
~~~~



