Skip to content

Latest commit

 

History

History
22 lines (10 loc) · 524 Bytes

File metadata and controls

22 lines (10 loc) · 524 Bytes

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.