https://github.com/pixiedust/pixiedust_rosie
Integrate Rosie Pattern Language into a "wrangle data" capability
https://github.com/pixiedust/pixiedust_rosie
pixiedust python rosie-pattern-language
Last synced: about 1 month ago
JSON representation
Integrate Rosie Pattern Language into a "wrangle data" capability
- Host: GitHub
- URL: https://github.com/pixiedust/pixiedust_rosie
- Owner: pixiedust
- License: apache-2.0
- Created: 2018-03-13T18:47:23.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-08-01T20:50:37.000Z (almost 7 years ago)
- Last Synced: 2025-03-29T07:22:38.803Z (2 months ago)
- Topics: pixiedust, python, rosie-pattern-language
- Language: Python
- Homepage: https://pypi.org/project/pixiedust_rosie/
- Size: 123 KB
- Stars: 6
- Watchers: 4
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pixiedust_rosie
Integrate [Rosie Pattern Language](http://rosie-lang.org) into a "wrangle data" capability.## Getting started
* Create a Jupyter notebook in your local environment and associate it with a Python kernel
* Install the [`pixiedust`](https://pypi.org/project/pixiedust/), [`rosie`](https://pypi.org/project/rosie/) and [`pixieduct_rosie`](https://pypi.org/project/pixiedust_rosie/) packages```
! pip install pixiedust
! pip install rosie
! pip install pixiedust_rosie
```* Import `pixiedust_rosie` and call `pixiedust_rosie.wrangle_data`, providing a local or remote URL for a CSV file as parameter
```
import pixiedust_rosie
pixiedust_rosie.wrangle_data("URL")
```
For example:
```
pixiedust_rosie.wrangle_data("https://raw.githubusercontent.com/pixiedust/pixiedust_rosie/master/sample-data/HCUP_Tutorial.csv")
```## License
[Apache 2.0](LICENSE)