Matplotlib is a plotting library for the Python programming language and its numerical mathematics extension NumPy. It provides an object-oriented API for embedding plots into applications using general-purpose GUI toolkits like Tkinter, wxPython, Qt, or GTK+.
In this page, we will write some tutorials and examples on how to use matplotlib, you can learn how to draw graphics by using it.
matplotlib.rcParams[‘lines.color’] allows us to change the color of the line in matplotlib. However, it has no affect on plot() function. In this tutorial, we will introduce how to fix this problem.
We can use matplotlib.rcParams[‘lines.linestyle’] to set the style of line in matplotlib. In this tutorial, we will list all the line styles to help matplotlib beginners to use.
matplotlib.rcParams is a matplotlib.RcParams object, it is a dictionary-like variable which store some rc settings in matplotlib. In this tutorial, we will introduce how to use it.
matplotlib.pyplot.imshow() can display data as an image file, we will use some examples to show you how to use this function correctly in this tutorial.
Line chart is common used in data analysis field, it is easy to implement in python. In this tutorial, we will introduce python beginners to understand how to draw a line chart.
Matplotlib fontdict can allow us to set the font style of text in a plot, how to use it to set font style? In this tutorial, we will introduce some tips on how to set values of fontdict for matplotlib beginners.
To change the font style of text is very easy in python matplotlib. In this tutorial, we will tell you how to do. However, as a python beginner, you should know two basic concepts: font family and font, which will be used in this tutorial.
We can use python matplot to implement a scatter plot easily, However, how to display these scatter point with labels. In this tutorial, we will introduce how to create a scatter plot with labels for python beginners.
We have used python matplotlib library to write a python example, however, we encounter an ImportError: cannot import name ‘_path’. In this tutorial, we will introduce how to fix this error.