No BSD License  

Highlights from
confplot

4.16667

4.2 | 12 ratings Rate this file 45 Downloads (last 30 days) File Size: 78.22 KB File ID: #2683
image thumbnail

confplot

by Michele Giugliano

 

11 Nov 2002 (Updated 12 Nov 2002)

Extending ERRORBAR, it plots a line within a shaded area, as 'continuous' confidence/error bounds.

Editor's Notes:

This file was a File Exchange Pick of the Week

| Watch this File

File Information
Description

CONFPLOT is a linear plot utility, extending ERRORBAR to represent continuous confidence/error boundaries as a shaded gray area around the plotted line (i.e. taking advantage of the command 'area').

CONFPLOT(X,Y,L,U) plots the graph of vector X vs. vector Y with 'continuous' confidence/error boundaries specified by the vectors L and U. L and U contain the lower and upper error ranges for each point in Y. The vectors X,Y,L and U must all be the same length.

Acknowledgements
This submission has inspired the following:
errorfill, confplot_t, boundedline: line plots with shaded error/confidence intervals
MATLAB release MATLAB 6.0 (R12)
Tags for This File  
Everyone's Tags
Tags I've Applied
Add New Tags Please login to tag files.
Comments and Ratings (13)
12 Nov 2003 Ajit Chaudhari

A nice starting point to figure out how to make the error plots I want

02 Aug 2004 Stefano Fusi

Very useful. I'm not sure it works in a log scale.

28 Nov 2005 Alberto Redondas

Very useful but dont work if you have NaN on the error variables.

01 Dec 2005 Sergio Vallina

confplot.m seems ok in the "default mode" (without defining color and linestyle) but has a bug if we try:

    For example,
       x = 1:0.1:10;
       y = sin(x);
       e = std(y)*ones(size(x));
       confplot(x,y,e,'r')

or even it gives an error if we try:

       confplot(x,y,e,'r-')

10 Nov 2006 Raymond Reynolds

Ok, but not sure its very good for multiple plots, which is what i want for comparing overlapping intervals- can't easily control which plots overly others.

11 Jun 2008 Maria Byrne

Great! Just what I was looking for. Very tidy way to represent range of values found in noisy data. I used this function and then overlaid errorbar on top.

19 Jun 2008 jarek tuszynski

Simple and effective. I seem to be using it a lot.

28 Apr 2009 Kay Thurley  
21 Sep 2010 Jim

I really appreciated this as a starting point, however, like Raymond Reynolds wrote in a comment in 2006, it doesn't do well for overlapping intervals, because you cannot add/control the alpha of the shaded area. An easier, and more useful way to do the plotting is to replace the area with a patch command. This then allows you to directly control the shading and alpha of the area, the only caveat is that you must have bounded ends, so a check to set the first and last points to be the same in the shaded area is needed. I would be happy to send you my code that I edited to do this for you to update this, or (less desirable), I could upload my own version, but I think replacing with patches is a superior method and allows effective viewing of multiple shaded areas.

18 Dec 2010 Nathan Orloff  
18 Dec 2010 Nathan Orloff

Hmmm. Well I gave it a five, because it is easy. Now after using it there are a couple major bugs.

1) It does not output any handles, so you cant conveniently change plot details.

2) It does not allow you to pass a color to shade. So you are stuck with the default options. Errorshade2 can do this, but it is not as easy to implement and debug.

22 Mar 2011 Nicolas

Compatible with Laprint.

09 Aug 2011 Panagiotis

It's very useful but there is a conflict with the "legend" command.

Please login to add a comment or rating.
Tag Activity for this File
Tag Applied By Date/Time
specialized Michele Giugliano 22 Oct 2008 06:53:49
plotting Michele Giugliano 22 Oct 2008 06:53:49
errorplot confidence Michele Giugliano 22 Oct 2008 06:53:49
confplot Michele Giugliano 22 Oct 2008 06:53:49
graphics Michele Giugliano 22 Oct 2008 06:53:49
specialize Michele Giugliano 22 Oct 2008 06:53:49
specialized plot Michele Giugliano 22 Oct 2008 06:53:49
plotting Rodrigo 14 Oct 2009 17:29:06
standard deviation Rodrigo 14 Oct 2009 17:29:16
confplot Panagiotis 27 Jun 2011 03:10:40

Contact us at files@mathworks.com