Created
September 21, 2020 10:30
-
-
Save BexTuychiev/929acf365c99ed3e378f982c9203aed8 to your computer and use it in GitHub Desktop.
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
# Loading necessary libraries | |
import pandas as pd | |
import numpy as np | |
import matplotlib.pyplot as plt | |
# Plotting pretty figures and avoid blurry images | |
%config InlineBackend.figure_format = 'retina' | |
# No need to include %matplotlib inline magic command. These things come built-in now. | |
# Ignore warnings | |
import warnings | |
warnings.filterwarnings('ignore') | |
# Enable multiple cell outputs | |
from IPython.core.interactiveshell import InteractiveShell | |
InteractiveShell.ast_node_interactivity = 'all' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment