Skip to content

Commit

Permalink
Merge pull request #122 from sfu-db/polish-meta
Browse files Browse the repository at this point in the history
Polish meta
  • Loading branch information
dovahcrow authored Apr 4, 2020
2 parents 5c359dc + 7bf78d2 commit 552ca2b
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 104 deletions.
73 changes: 0 additions & 73 deletions CONTRIBUTING.md

This file was deleted.

56 changes: 27 additions & 29 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,44 +1,22 @@
# DataPrep ![Build Status]
# Dataprep ![Build Status]
[Documentation] | [Mail List & Forum]

Dataprep is a collection of functions that
helps you accomplish tasks before you build a predictive model.


## Implementation Status
Dataprep let you prepare your data using a single library with a few lines of code.

Currently, you can use `dataprep` to:
* Collect data from common data sources (through `dataprep.data_connector`)
* Do your exploratory data analysis (through `dataprep.eda`)
* ...

* ...more modules are coming

## Installation

```bash
pip install dataprep
```

`dataprep` is in its alpha stage now, so please manually specific the version number.


## Examples & Usages

More detailed examples can be found at the [examples] folder.

### Data Connector

You can download Yelp business search result into a pandas DataFrame,
using two lines of code, without taking deep looking into the Yelp documentation!

```python
from dataprep.data_connector import Connector

dc = Connector("yelp", auth_params={"access_token":"<Your yelp access token>"})
df = dc.query("businesses", term="ramen", location="vancouver")
```
![DataConnectorResult]

Detailed examples can be found in the [examples] folder.

### EDA

Expand Down Expand Up @@ -93,17 +71,37 @@ plot_missing(df, x="some_column_name")

Don't forget to checkout the [examples] folder for detailed demonstration!

### Data Connector

You can download Yelp business search result into a pandas DataFrame,
using two lines of code, without taking deep looking into the Yelp documentation!

```python
from dataprep.data_connector import Connector

dc = Connector("yelp", auth_params={"access_token":"<Your yelp access token>"})
df = dc.query("businesses", term="ramen", location="vancouver")
```
![DataConnectorResult]


## Contribution
Contribution is always welcome.
If you want to contribute to dataprep, be sure to read the [contribution guidelines].

Dataprep is in its early stage. Any contribution including:
* Filing an issue
* Providing use cases
* Writing down your user experience
* Submitting a PR
* ...

are greatly appreciated!

Please take a look at our [wiki] for development documentations!


[Build Status]: https://img.shields.io/circleci/build/github/sfu-db/dataprep/master?style=flat-square&token=f68e38757f5c98771f46d1c7e700f285a0b9784d
[Documentation]: https://sfu-db.github.io/dataprep/
[Mail list & Forum]: https://groups.google.com/forum/#!forum/dataprep
[contribution guidelines]: https://github.com/sfu-db/dataprep/blob/master/CONTRIBUTING.md
[wiki]: https://github.com/sfu-db/dataprep/wiki
[examples]: https://github.com/sfu-db/dataprep/tree/master/examples
[DataConnectorResult]: https://github.com/sfu-db/dataprep/raw/master/assets/data_connector.png
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
name = "dataprep"
version = "0.2.1"
description = "Dataprep: Data Preparation in Python"
authors = [
"Jiannan Wang <[email protected]>",
authors = ["SFU Database System Lab <[email protected]>"]
maintainers = [
"Weiyuan Wu <[email protected]>",
"Jinglin Peng <[email protected]>",
"Pei Wang <[email protected]>",
Expand Down

0 comments on commit 552ca2b

Please sign in to comment.