Last active
December 13, 2022 18:04
-
-
Save alexlenail/a91b08e241f112ee59ca890fc4a74b80 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
import numpy as np | |
import pandas as pd | |
import matplotlib | |
import matplotlib.pyplot as plt | |
plt.rcParams['figure.figsize'] = [8, 8] | |
plt.rcParams['figure.dpi'] = 240 | |
plt.rcParams['svg.fonttype'] = 'none' | |
plt.rcParams['pdf.use14corefonts'] = True | |
from matplotlib_inline.backend_inline import set_matplotlib_formats | |
set_matplotlib_formats('svg') | |
%matplotlib inline | |
pd.set_option('display.max_rows', 50) | |
# pd.set_option('display.max_colwidth', None) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment