Created
June 29, 2018 21:58
-
-
Save iamaaditya/8ed89f6b8948ef93a31b61b20598fe04 to your computer and use it in GitHub Desktop.
Matplotlib inline starter
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 numpy as np | |
import pandas as pd | |
import json | |
from glob import glob | |
import matplotlib | |
import matplotlib.pyplot as plt | |
%matplotlib inline | |
import seaborn as sns | |
sns.set(style="ticks" , palette='Set2') | |
sns.despine() | |
cmap = sns.diverging_palette(5, 250, as_cmap=True) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment