Created
March 29, 2019 02:05
-
-
Save gabriel19913/f4b5a2bde5dfd3a6d979b6847e08684e 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
| %%time | |
| #Importing libraries | |
| import pandas as pd | |
| import json as JSON | |
| from json import load | |
| import numpy as np | |
| import requests | |
| import matplotlib.pyplot as plt | |
| import seaborn as sns | |
| import time | |
| %matplotlib inline | |
| #Setting Pandas to show all columns | |
| pd.set_option('display.max_columns', None) | |
| pd.set_option('display.max_rows', None) | |
| pd.options.display.float_format = '{:,.2f}'.format | |
| ----- | |
| df = pd.read_json('xg_df.json') | |
| df.head(20) | |
| ----- | |
| df.info() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment