2017-08-15 2 views

Antwort

1

Sie können die Eigenschaften jeder Zeile mit der gleichen matplotlib.pyplot.setp() Methode angeben:

import matplotlib.pyplot as plt 
import numpy as np 

x = np.arange(0, 1.0, 0.01) 
y1 = np.sin(2*np.pi*x) # function 1 
y2 = np.sin(4*np.pi*x) # function 2 
lines = plt.plot(x, y1, x, y2) 

l1, l2 = lines # split lines  
plt.setp(l1, linewidth=1, color='r', linestyle='-') # set function 1 linestyle 
plt.setp(l2, linewidth=1, color='g', linestyle='-') # set function 2 linestyle 

plt.show() 

Ausgang:

enter image description here

+0

LiamG_G ist das, was willst du? – manelfp

+0

Ja, tut mir leid. Ich bin bis heute noch nicht dazu gekommen. Vielen Dank! –

Verwandte Themen