John-Curcio / summit

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

Home Page:https://www.cmudsc.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

https://www.cmudsc.org/


Languages

Language:Jupyter Notebook 100.0%