Last active
September 6, 2017 08:09
-
-
Save pierdom/5b3856d3b7fc316dce43cebd334036c2 to your computer and use it in GitHub Desktop.
[My Jupyter header for Python notebooks] a common list of libraries I import when creating a new notebook with Jupyter #python #jupyter #datascience
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 matplotlib | |
| matplotlib.use("Agg") | |
| import matplotlib.pyplot as plt | |
| import seaborn as sns | |
| import numpy as np | |
| import pandas as pd | |
| %matplotlib inline |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment