Created
October 2, 2017 14:26
-
-
Save sergiolucero/b1070a33db80e8050f7394cccd79a0e1 to your computer and use it in GitHub Desktop.
Panda dreams
This file contains hidden or 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 pandas as pd | |
| from pandasqlutils import * # to easily cross tables | |
| bikes = pd.read_url('http://quant.cl/db/bikes') # serving from quant via sqlite | |
| airquality = pd.read_url('s3://amazonxyz.aws.com/sdakjldajds') # using an S3 bucket | |
| weather = pd.read_url('quant.cl/postgres/weather' # running on a docker (Rad?) | |
| airvsclimate = cross(airquality, weather) | |
| print(airvsclimate.head()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The work that needs to be done: