E-Mail fdandrea@cs.ubc.ca
Slack channel #521_platforms-dsci
Office hours Fridays 10-11 am
The Turing Way Community, & Scriberia(2020)
After this lecture you will be able to:
The most rudimentary interaction with programming languages such as R and Python is via interactive shells run from a terminal.
Provide all the tools you need in one place
After this lecture you will be able to:
Launch JupyterLab
Use the Notebook interface inside JupyterLab
Know your way around the JupyterLab user interface
(1) UBC Server | (2) Installed version on your computer
/tree
to /lab
After this lecture you will be able to:
Launch JupyterLab
Use the Notebook interface inside JupyterLab
Know your way around the JupyterLab user interface
The Notebook provides and interface where you can mix text, code, mathematical expressions, plots, videos, and more, all in the same file.
# Please note, you don't have to understand what is going on in this cell
# it is just to show you how a static plot looks inside JupyterLab
import numpy as np
import matplotlib.pyplot as plt
N = 50
x = np.random.rand(N)
y = np.random.rand(N)
colors = np.random.rand(N)
area = (30 * np.random.rand(N))**2 # 0 to 15 point radii
plt.scatter(x, y, s=area, c=colors, alpha=0.5)
After this lecture you will be able to:
Launch JupyterLab
Use the Notebook interface inside JupyterLab
Know your way around the JupyterLab user interface
The Turing Way Community, & Scriberia. (2020). Illustrations from the Turing Way book dashes. Zenodo. https://doi.org/10.5281/zenodo.3695300