Ayrıca zaman damgasını, değer çiftlerini pyplot.plot kullanarak (dize gösterimlerinden ayrıştırdıktan sonra) çizebilirsiniz . (Matplotlib 1.2.0 ve 1.3.1 sürümleriyle test edilmiştir.)
Misal:
import datetime
import random
import matplotlib.pyplot as plt
# make up some data
x = [datetime.datetime.now() + datetime.timedelta(hours=i) for i in range(12)]
y = [i+random.gauss(0,1) for i,_ in enumerate(x)]
# plot
plt.plot(x,y)
# beautify the x-labels
plt.gcf().autofmt_xdate()
plt.show()
Ortaya çıkan resim:
Dağılım grafiğiyle aynı:
import datetime
import random
import matplotlib.pyplot as plt
# make up some data
x = [datetime.datetime.now() + datetime.timedelta(hours=i) for i in range(12)]
y = [i+random.gauss(0,1) for i,_ in enumerate(x)]
# plot
plt.scatter(x,y)
# beautify the x-labels
plt.gcf().autofmt_xdate()
plt.show()
Buna benzer bir görüntü üretir: