This works for me with 1.2 (not tested before that):

import matplotlib.pyplot as plt
import numpy as np


x = np.array([0, 1, None, 1, 0])
y = np.array([0, 1, None, 0, 1])

plt.plot(x, y)

plt.show()



I get two distinct lines crossing each other at (0.5, 0.5)


HTH,

------------------------------------------------------------------------------
Don't let slow site performance ruin your business. Deploy New Relic APM
Deploy New Relic app performance management and know exactly
what is happening inside your Ruby, Python, PHP, Java, and .NET app
Try New Relic at no cost today and get our sweet Data Nerd shirt too!
http://p.sf.net/sfu/newrelic-dev2dev
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to