Last active
June 9, 2020 13:54
-
-
Save jpigla/234fd640f5383d43e4a0d447cb5393c2 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
# Start Setup for Jupyter Notebooks | |
import pandas as pd | |
import numpy as np | |
import re | |
import matplotlib.pyplot as plt | |
%matplotlib inline | |
from IPython.display import display as dpl | |
# Pandas options | |
pd.set_option('display.max_colwidth', None) | |
pd.set_option('display.max_rows', 100) | |
pd.set_option('display.max_columns', 50) | |
# Customize Jupyter | |
from IPython.core.display import HTML | |
display(HTML("<style>.container { width:80% !important; }</style>")) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment