Created
September 15, 2021 14:07
-
-
Save aflansburg/e76755b60bdebd2b7074716385f6602f to your computer and use it in GitHub Desktop.
standard_jupyter_notebook_imports
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 initial libs to do EDA | |
import pandas as pd | |
import numpy as np | |
import random | |
# viz libs | |
import matplotlib.pyplot as plt | |
import matplotlib.patches as mpatches | |
%matplotlib inline | |
import seaborn as sns | |
# Utility lib imports | |
pd.set_option("display.max_columns", None) # remove limit on displayed columns/rows | |
pd.set_option("display.max_rows", 100) | |
pd.set_option("display.float_format", lambda x: "%.5f" % x) | |
# suppress warnings | |
import warnings | |
warnings.filterwarnings("ignore") | |
# for Python code beautification | |
%load_ext nb_black | |
# for debugging | |
from IPython.core.debugger import Pdb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment