First time here? Check out the FAQ!

Ask Your Question
1

Fill area under list_plot

asked 13 years ago

v_2e gravatar image

Hello!

Is there a way to fill the area between the two curves plotted using the list_plot() function?

My particular application is this: I have a list of points of the format (x, y, y_max, y_min), where y_max and y_min denote the maximum and minimum values of y for the given x value because of the measurements uncertainty. I need to plot this curve and fill the uncertainty corridor with some other color.

I use my own function that retrieves the data from this list and use plot() to obtain an abovementioned result at the moment. But in this case my function is evaluated in some kind of random points which do not correspond the exact experimental x values from the initial data list, that is why this solution is not very good too.

Thank you.

Preview: (hide)

Comments

what happened to @DSM's answer?

niles gravatar imageniles ( 13 years ago )

1 Answer

Sort by » oldest newest most voted
1

answered 13 years ago

achrzesz gravatar image

Maybe you should try without list_plot?

(no random points)

Replace li by your list of [x,y(x),ymax(x),ymin(x)]

li=[[x,sin(x),sin(x)+0.2,sin(x)-0.2] for x in srange(0,2*pi,0.3)]

a=[[x[0],x[2]] for x in li]

b=[[x[0],x[3]] for x in li]

c=[[x[0],x[1]] for x in li]

b.reverse()

p1=polygon2d(a+b,color='lightgrey',alpha=0.7)

p2=line(c,thickness=3)

p3=line(a,color='black')

p4=line(b,color='black')

(p1+p2+p3+p4).show()

Preview: (hide)
link

Comments

Thanks! Not bad workaround.

v_2e gravatar imagev_2e ( 13 years ago )

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 13 years ago

Seen: 557 times

Last updated: Dec 25 '11