Can Jupyter hold with the charts?
As we mentioned before, Jupyter provides us in particular with matplotlib
library, which allows us to build charts.
Opgave
Swipe to start coding
Create two lists of points. Choose at least 2-3 numbers in each list.
Løsning
# create x and y numbers
x = [1,2,3]
y = [20,15,13]
# import library
import matplotlib.pyplot as plt
plt.plot(x, y)
Mark tasks as Completed
Var alt klart?
Tak for dine kommentarer!
Sektion 1. Kapitel 5
AVAILABLE TO ULTIMATE ONLY