Skip to content

Instantly share code, notes, and snippets.

@gabriel19913
Created March 29, 2019 02:05
Show Gist options
  • Select an option

  • Save gabriel19913/f4b5a2bde5dfd3a6d979b6847e08684e to your computer and use it in GitHub Desktop.

Select an option

Save gabriel19913/f4b5a2bde5dfd3a6d979b6847e08684e to your computer and use it in GitHub Desktop.
%%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