Last active
July 19, 2019 11:24
-
-
Save elmotec/39d6c181616d837931e3e798118dfe9b to your computer and use it in GitHub Desktop.
First/top cell in my Jupyter notebook
This file contains 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 numexpr as ne | |
import pandas as pd | |
import matplotlib | |
import matplotlib.pyplot as plt | |
%load_ext autoreload | |
%autoreload 2 | |
%matplotlib inline | |
print('versions:\n' + '\n'.join([package.__name__ + ': '+ package.__version__ for package in [np, ne, pd]])) | |
pd.set_options('display.max_columns', 200) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment