Created
October 24, 2019 03:06
-
-
Save vietvudanh/c2f3d04818360d526a2d494b9a625f9d to your computer and use it in GitHub Desktop.
notebook_common_import
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 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