Skip to content

Instantly share code, notes, and snippets.

@jpigla
Last active June 9, 2020 13:54
Show Gist options
  • Save jpigla/234fd640f5383d43e4a0d447cb5393c2 to your computer and use it in GitHub Desktop.
Save jpigla/234fd640f5383d43e4a0d447cb5393c2 to your computer and use it in GitHub Desktop.
# 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