/summit

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

Primary LanguageJupyter Notebook

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.