The Future is not on Mars! – It's on Jupyter!



The Future is not on Mars! – It's on Jupyter!

0 0


sacnas15-opensource

This is for panel presentation on open source and Project Jupyter

On Github rosariorobinson / sacnas15-opensource

The Future is not on Mars!

It's on Jupyter!

Journey to Jupyter

Explore, Empower, Change

Rose Robinson

@rosariorobinson

rosariorobinson.com

20+ years in Tech

Telecom Wireless and Cable, GIS, DoD/Intel

Large Enterprise and eCommerce Implementations

Open Source Programs

What is Jupyter?

Who is Jupyter?

Researchers

Instructors

Students

Engineers

Data Analysts

Damian Avíla

Data Scientist, BioChemist, PhD Immunology

@damian_avila -- www.damian.oquanta.info

Fernando Perez

Lawrence Berkeley National Lab

@fperez_org -- fperez.org

Safia Abdalla

Northwestern U, ChickTech Chicago, PyLadies Chicago

And You!

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?

Try Jupyter

try.jupyter.org

%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

Thank you

The Future is not on Mars! It's on Jupyter!