Skip to content

Master text for the CMU DSC's data science summit. Provides an intro to NumPy, Pandas, SciKit-Learn in that order.

Notifications You must be signed in to change notification settings

robert-lucente/summit

 
 

Repository files navigation

Some TODOs:

Note that this WON'T work completely out of the box in DataBricks. Specifically the matplotlib sections - you need some syntax like the following:

import matplotlib.pyplot as plt

import numpy as np

fig, ax = plt.subplots()

x = np.arange(0, 10, 0.25)

ax.plot(x, np.sin(x))

display(fig)

For more info, check this out.

Also, I think this needs more room for audience participation and quizzes.

About

Master text for the CMU DSC's data science summit. Provides an intro to NumPy, Pandas, SciKit-Learn in that order.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 100.0%