Created
February 7, 2019 05:10
-
-
Save gpfreitas/206af00aeb6e353386fc12a1596037e8 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
import numpy as np | |
import pandas as pd | |
import itertools as it | |
import matplotlib.pyplot as plt | |
import logging | |
log_fmt = '%(asctime)s - %(name)s - %(levelname)s - %(message)s' | |
logging.basicConfig(level=logging.INFO, format=log_fmt) | |
logging.info('BEGIN') | |
pd.options.display.precision = 4 | |
pd.options.display.width = 120 | |
plt.rcParams['figure.figsize'] = (14, 8) | |
%matplotlib inline |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment