matplotlib Part 28 – 3D Contour Plots
3D Contour Plots Today we’ll be plotting contours in 3D. To this end we need the contour method. This method… Read More »matplotlib Part 28 – 3D Contour Plots
3D Contour Plots Today we’ll be plotting contours in 3D. To this end we need the contour method. This method… Read More »matplotlib Part 28 – 3D Contour Plots
Errorbars In this article we’ll be talking about errorbars. We use them to add information about possible errors or uncertainties.… Read More »matplotlib Part 21 – Errorbars
2D Histograms In the previous article we were talking about histograms. Today we’ll be talking about two-dimensional histograms, which we… Read More »matplotlib Part 20 – 2D Histograms
Histograms In this article we’ll have a look at histograms, binnings and density plots. Let’s create a simple histogram using… Read More »matplotlib Part 19 – Histograms
Scatter Plots with the scatter Method In the previous article we were using the plot method to create scatter plots.… Read More »matplotlib Part 18 – Scatter Plots with the scatter Method
Scatter Plots with the plot Method So far we’ve been only using line plots. But there’s a great variety of… Read More »matplotlib Part 17 – Scatter Plots with the plot Method
The Subplot2grid Layout Manager Most of the time we’ve been creating figures and axes using the plt.subplots method. Today let’s… Read More »matplotlib Part 16 – The Subplot2grid Layout Manager
Insets You can create axes that sit inside other axes. You can come across examples of axes that display magnified… Read More »matplotlib Part 15 – Insets
Twin Axes Sometimes you may want to display two independent axes at the same time, like for example when you… Read More »matplotlib Part 14 – Twin Axes
Sometimes you may want to share axis scale across multiple axes. Let’s have a look at the following example: In [3]:… Read More »matplotlib Part 13 – Sharing Axis Scale
Grids In the previous part of the Matplotlib series we were talking about axis ticks. Today’s topic is closely related… Read More »matplotlib Part 12 – Grids
In the previous part of the Matplotlib series we were talking about text annotations. In this part we’ll be talking… Read More »matplotlib Part 11 – Axis Ticks
In the previous part of the Matplotlib series we were talking about the legend. Today we’ll learn how to add… Read More »matplotlib Part 10 – Text Annotations
In the previous part of the Matplotlib series we were talking about the title and axis labels. Today let’s see… Read More »matplotlib Part 9 – The Legend
In this part of the Matplotlib series we’ll be talking about axis ranges. Let’s start by plotting a function: In [1]:… Read More »matplotlib Part 7 – Axis Range
In the previous part of the Matplotlib series we created a figure with an Axes object on it with three… Read More »matplotlib Part 4 – Multiple Axes
In the previous part of the Matplotlib series we created the matplotlib folder in Jupyter Notebook. Let’s add a notebook… Read More »matplotlib Part 2 – A Basic Matplotlib Example
Matplotlib is a cross-platform data visualization library. It’s used to visualize data and the results of all sorts of computations.… Read More »matplotlib Part 1 – Introduction to Matplotlib