Last active
June 17, 2020 00:00
-
-
Save dzakyputra/8bc1c763a1b16231a9d03714a6a96a14 to your computer and use it in GitHub Desktop.
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
from matplotlib.colors import ListedColormap | |
from tqdm import tqdm | |
import matplotlib.patches as mpatches | |
import matplotlib.pyplot as plt | |
import pandasql as pdsql | |
import seaborn as sns | |
import pandas as pd | |
import numpy as np | |
import math | |
import json | |
# Read in the json files | |
portfolio = pd.read_json('portfolio.json', orient='records', lines=True) | |
profile = pd.read_json('profile.json', orient='records', lines=True) | |
transcript = pd.read_json('transcript.json', orient='records', lines=True) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment