在 Matplotlib,如何在同一个图形上绘制多个函数?

如何在域 t上绘制以下3个函数(即 sincos和相加函数) ?

from numpy import *
import math
import matplotlib.pyplot as plt


t = linspace(0, 2*math.pi, 400)


a = sin(t)
b = cos(t)
c = a + b
635162 次浏览

只需像下面这样使用函数 plot

figure()
...
plot(t, a)
plot(t, b)
plot(t, c)

要在同一个图形上绘制多个图形,你必须这样做:

from numpy import *
import math
import matplotlib.pyplot as plt


t = linspace(0, 2*math.pi, 400)
a = sin(t)
b = cos(t)
c = a + b


plt.plot(t, a, 'r') # plotting t, a separately
plt.plot(t, b, 'b') # plotting t, b separately
plt.plot(t, c, 'g') # plotting t, c separately
plt.show()

enter image description here

也许这是一种比较隐晦的方式。

from numpy import *
import math
import matplotlib.pyplot as plt


t = linspace(0,2*math.pi,400)
a = sin(t)
b = cos(t)
c = a + b


plt.plot(t, a, t, b, t, c)
plt.show()

enter image description here

如果你想处理图形,我给出一个例子,你想在同一个图形中绘制多条 ROC 曲线:

from matplotlib import pyplot as plt
plt.figure()
for item in range(0, 10, 1):
plt.plot(fpr[item], tpr[item])
plt.show()