I want to update it.
I know it's better not to import unnecessary things, I think any devout engineer would copy and paste from the previous source.
import numpy as np # linear algebra
import pandas as pd # data processing, CSV file I/O (e.g. pd.read_csv)
# Suppress warnings
import warnings
warnings.filterwarnings('ignore')
import gc
# matplotlib and seaborn for plotting
import matplotlib.pyplot as plt
%matplotlib inline
import seaborn as sns
#Postscript
import json
import datetime
import math
#It's not an import, but personally there aren't many things that can be omitted ...
pd.set_option('display.max_columns', 500)
pd.set_option('display.max_rows', 1000)
By the way, the method of automatically importing to jupyter is detailed in the following articles. Let's try it next time. https://recruit-tech.co.jp/blog/2018/10/16/jupyter_notebook_tips/
Recommended Posts