- matplotlib Plotting Cookbook
- Alexandre Devert
- 384字
- 2021-07-16 12:16:24
Plotting multiple curves
One of the reasons we plot curves is to compare those curves. Are they matching? Where do they match? Where do they not match? Are they correlated? A graph can help to form a quick judgment for more thorough investigations.
How to do it...
Let's show both sin(x)
and cos(x)
in the [0, 2pi] interval as follows:
import numpy as np import matplotlib.pyplot as plt X = np.linspace(0, 2 * np.pi, 100) Ya = np.sin(X) Yb = np.cos(X) plt.plot(X, Ya) plt.plot(X, Yb) plt.show()
The preceding script will give us the result shown in the following graph:

How it works...
The two curves show up with a different color automatically picked up by matplotlib. We use one function call plt.plot()
for one curve; thus, we have to call plt.plot()
here twice. However, we still have to call plt.show()
only once. The functions calls plt.plot(X, Ya)
and plt.plot(X, Yb)
can be seen as declarations of intentions. We want to link those two sets of points with a distinct curve for each.
matplotlib will simply keep note of this intention but will not plot anything yet. The plt.show()
curve, however, will signal that we want to plot what we have described so far.
There's more...
This deferred rendering mechanism is central to matplotlib. You can declare what you render as and when it suits you. The graph will be rendered only when you call plt.show()
. To illustrate this, let's look at the following script, which renders a bell-shaped curve, and the slope of that curve for each of its points:
import numpy as np import matplotlib.pyplot as plt def plot_slope(X, Y): Xs = X[1:] - X[:-1] Ys = Y[1:] - Y[:-1] plt.plot(X[1:], Ys / Xs) X = np.linspace(-3, 3, 100) Y = np.exp(-X ** 2) plt.plot(X, Y) plot_slope(X, Y) plt.show()
The preceding script will produce the following graph:

One of the function call, plt.plot()
, is done inside the plot_slope
function, which does not have any influence on the rendering of the graph as plt.plot()
simply declares what we want to render, but does not execute the rendering yet. This is very useful when writing scripts for complex graphics with a lot of curves. You can use all the features of a proper programming language—loop, function calls, and so on— to compose a graph.
- Arduino by Example
- OpenCV實例精解
- Python爬蟲開發(fā):從入門到實戰(zhàn)(微課版)
- 基于Java技術(shù)的Web應(yīng)用開發(fā)
- Mastering matplotlib
- Internet of Things with Intel Galileo
- Python漫游數(shù)學(xué)王國:高等數(shù)學(xué)、線性代數(shù)、數(shù)理統(tǒng)計及運籌學(xué)
- Visual C#.NET程序設(shè)計
- Highcharts Cookbook
- 計算機應(yīng)用基礎(chǔ)實踐教程
- Hands-On Robotics Programming with C++
- 大學(xué)計算機應(yīng)用基礎(chǔ)(Windows 7+Office 2010)(IC3)
- Java編程指南:語法基礎(chǔ)、面向?qū)ο蟆⒑瘮?shù)式編程與項目實戰(zhàn)
- OpenStack Sahara Essentials
- jQuery權(quán)威指南