journey to jupyter

27
Welcome

Upload: carol-willing

Post on 19-Jan-2017

140 views

Category:

Software


0 download

TRANSCRIPT

Page 1: Journey to Jupyter

Welcome

Page 2: Journey to Jupyter

Journey to JupyterExplore, Empower, Change

Qualcomm EmpowHERment Workshop

July 17, 2015

Page 3: Journey to Jupyter

Your guides

Dr. Youwen Ouyang

Carol Willing

Page 4: Journey to Jupyter

What is Jupyter?

Page 5: Journey to Jupyter

Powerful yet intuitive

Page 6: Journey to Jupyter

Many languages

Page 7: Journey to Jupyter

Interactive

Page 8: Journey to Jupyter

Iterative

Page 9: Journey to Jupyter

Why?

Page 10: Journey to Jupyter

Mentor and shareSciPy 2014 @ UT-Austin

Grace Hopper Celebration 2014 - Phoenix

CSUSM Hackathon October 2014

CSUSM Women in Computing

Page 11: Journey to Jupyter

San Diego Womens' Hackathon

Hosted at Cal State San Marcos

Page 12: Journey to Jupyter

Interact and engageHour of Code 2014

Page 13: Journey to Jupyter

Empower

National Day of Civic Hacking 2015

Page 14: Journey to Jupyter

Change

San Diego Womens' Hackathon

Bone health and Water conservation projects

Page 15: Journey to Jupyter

How?

Page 16: Journey to Jupyter

Try Jupytertry.jupyter.org

Page 17: Journey to Jupyter

From data to visualizationA few lines of code

%matplotlib inline

import pandas as pdimport numpy as npimport matplotlib

from matplotlib import pyplot as pltimport 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()

Page 18: Journey to Jupyter

Examples

Page 19: Journey to Jupyter

Who?

Page 20: Journey to Jupyter

ResearchersInstructors

StudentsEngineers

Data Analysts

Page 21: Journey to Jupyter

A peer using Jupyter

http://www.jesshamrick.com/

https://developer.rackspace.com/blog/deploying-jupyterhub-for-education/

Page 22: Journey to Jupyter

What will YOU

explore

empower

change

?

Page 23: Journey to Jupyter

When?

Page 24: Journey to Jupyter

EmpowHERment Hackathon

Research

Visualizations

Animate

Prototype

Share

Page 25: Journey to Jupyter

Ways to learn more...Join Systers

Get involved on campus

User groups like PyLadies

Conferences

Ask questions

Page 26: Journey to Jupyter

Thank youPresentation: http://bit.ly/empowher-jupyter

Source code: http://bit.ly/empowher-source

Page 27: Journey to Jupyter

Happy hacking!