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
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.

Oppgave

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
Alt var klart?

Hvordan kan vi forbedre det?

Takk for tilbakemeldingene dine!

Seksjon 1. Kapittel 5
taskCode

Spør AI

expand
ChatGPT

Spør om hva du vil, eller prøv ett av de foreslåtte spørsmålene for å starte chatten vår

some-alt