Created
April 13, 2015 23:17
-
-
Save clintmjohnson/615f0ea100df6027396e to your computer and use it in GitHub Desktop.
This is a Text Bubbles Script pulling data from a URL and Pretty Printing it.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import bubbles | |
URL = "https://raw.github.com/Stiivi/cubes/master/examples/hello_world/data.csv" | |
p = bubbles.Pipeline() | |
p.source(bubbles.data_object("csv_source", URL, infer_fields=True)) | |
p.aggregate("Category", "Amount (US$, Millions)") | |
p.pretty_print() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment