MATPLOTLIB Tutorial Series | Part 4

Note: This article has also featured on geeksforgeeks.org

screenshot-144

Matplotlib is a pretty extensive library which supports Animations of graphs as well.
The animation tools center around the matplotlib.animation base class, which provides a framework around which the animation functionality is built. The main interfaces are TimedAnimation and FuncAnimation and out of the two, FuncAnimation is the most convenient one to use.

Read More »

MATPLOTLIB Tutorial Series | Part 3

Note: This article has also featured on geeksforgeeks.com .

In this part, we will discuss subplots and 3-D plotting.

Subplots

Subplots are required when we want to show two or more plots in same figure. We can do it in two ways using two slightly different methods.Read More »