Skip to content

Instantly share code, notes, and snippets.

@vietvudanh
Created October 24, 2019 03:06
Show Gist options
  • Save vietvudanh/c2f3d04818360d526a2d494b9a625f9d to your computer and use it in GitHub Desktop.
Save vietvudanh/c2f3d04818360d526a2d494b9a625f9d to your computer and use it in GitHub Desktop.
notebook_common_import
import os
import sys
import pandas as pd
import numpy as np
import matplotlib
from matplotlib import pyplot as plt
import seaborn as sns
from IPython.core.display import display, HTML
display(
HTML("<style>.container {width: 100% ! important;}</style>")
)
pd.set_option('display.max_rows', 50)
pd.set_option('display.max_columns', 100)
pd.set_option('display.width', 200)
%matplotlib inline
sns.set()
%load_ext autoreload
%autoreload 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment