Skip to content

Instantly share code, notes, and snippets.

@BexTuychiev
Created September 21, 2020 10:30
Show Gist options
  • Save BexTuychiev/929acf365c99ed3e378f982c9203aed8 to your computer and use it in GitHub Desktop.
Save BexTuychiev/929acf365c99ed3e378f982c9203aed8 to your computer and use it in GitHub Desktop.
# 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