Hello,

When creating a simple plot with

xs = [0.01*x for x in range(1000)]
ys = [x*x for x in xs]
pyplot.fill_between(xs, ys)

The plot shows between x=0 and x=10, as expected.
However, when looking to fill between 2 and 8, in this way:

b = [False if x<2 or x>8 else True for x in xs]
pyplot.fill_between(xs, ys, where=b)

Then the plot shows between x=0 and x=8. Is there a way to get it to
show up to x=10? Thanks,

Albert
------------------------------------------------------------------------------
Slashdot TV.  
Video for Nerds.  Stuff that matters.
http://tv.slashdot.org/
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to