Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Lære Working with Matplotlib | Time Series Essentials
Time Series Essentials
course content

Kursusindhold

Time Series Essentials

book
Working with Matplotlib

Now that we have explored our dataset and prepared it for our analysis we are going to plot the time series to see its overall trend.

Methods description

  • plt.figure(figsize= (width, height)): This function creates a new figure for plotting with the specified size. The figsize parameter sets the width and height of the figure in inches;

  • plt.plot(data): This function plots the data contained in the DataFrame data. It accepts various arguments to customize the plot, such as color, linestyle, marker, etc;

  • plt.xlabel(label): This function sets the label for the x-axis of the plot. The string label specifies the label text;

  • plt.ylabel(label): This function sets the label for the y-axis of the plot. The string label specifies the label text;

  • plt.title(title): This function sets the title of the plot. The string title specifies the title text.

Opgave

Swipe to start coding

  1. Use the matplotlib library to plot df.
  2. Create an xlabel with 'Years'.
  3. Create an ylabel with 'No of Air Passengers'.

Løsning

Mark tasks as Completed
Switch to desktopSkift til skrivebord for at øve i den virkelige verdenFortsæt der, hvor du er, med en af nedenstående muligheder
Var alt klart?

Hvordan kan vi forbedre det?

Tak for dine kommentarer!

Sektion 1. Kapitel 5
AVAILABLE TO ULTIMATE ONLY
Vi beklager, at noget gik galt. Hvad skete der?
some-alt