Last active
December 14, 2015 13:29
-
-
Save austinogilvie/5093768 to your computer and use it in GitHub Desktop.
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 | |
| import pandas.io.ga as ga | |
| from IPython.display import display | |
| pd.set_option('display.notebook_repr_html', True) | |
| pd.set_option('display.precision', 4) | |
| pd.set_option('display.max_rows', 50) | |
| pd.set_option('display.max_columns', 10) | |
| querycols = ['visits'] | |
| dims = ['date'] | |
| xlim = '2013-03-01' | |
| df = ga.read_ga(querycols, dimensions=dims, start_date=xlim) | |
| from IPython.core.display import display_html | |
| display_html(df) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment