Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Lære Can Jupyter hold with the charts? | Introduction to Jupyter notebook: Python
Introduction to Jupyter notebook: Python

book
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?

Hvordan kan vi forbedre det?

Tak for dine kommentarer!

Sektion 1. Kapitel 5
AVAILABLE TO ULTIMATE ONLY
some-alt