The Future is not on Mars!
					It's on Jupyter!
				Journey to Jupyter
					Explore, Empower, Change
				 20+ years in Tech
             Telecom Wireless and Cable, GIS, DoD/Intel
             Large Enterprise and eCommerce Implementations
             Open Source Programs
        Researchers
				    Instructors
				    Students
				    Engineers
				    Data Analysts
				 Damian Avíla 
                     Data Scientist, BioChemist, PhD Immunology 
                    
         Fernando Perez 
                     Lawrence Berkeley National Lab 
                    
          Safia Abdalla 
                     Northwestern U, ChickTech Chicago, PyLadies Chicago 
        Why should you teach with Jupyter?
				Why should you storytell with Jupyter?
				Why should you contribute to Jupyter?
				How to get involved with Project Jupyter?
				
%matplotlib inline
import pandas as pd
import numpy as np
import matplotlib
from matplotlib import pyplot as plt
import seaborn as sns
ts = pd.Series(np.random.randn(1000),
               index=pd.date_range('1/1/2000',
               periods=1000))
ts = ts.cumsum()
df = pd.DataFrame(np.random.randn(1000, 4), index=ts.index,
                  columns=['A', 'B', 'C', 'D'])
df = df.cumsum()
plt.figure(); df.plot(); plt.legend(loc='best')
					
				Ways to learn more...
				    Join Systers Open Source Programs
				    Get involved on campus
				    User groups like PyLadies
				    Conferences
				    Ask questions
				 
		
					The Future is not on Mars!
					It's on Jupyter!