How to plot several confidence intervals together?
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Mahmoud Zeydabadinezhad
am 13 Feb. 2018
Kommentiert: John D'Errico
am 16 Feb. 2018
Hi, I need to plot three regression lines and their confidence interval, all in one plot. It would be something like the attached plot that is created by SAS.
Any idea how to do this in MATLAB?
Thanks!
0 Kommentare
Akzeptierte Antwort
John D'Errico
am 13 Feb. 2018
Can you plot ONE regression line with a confidence band around it? Of course. The CI is trivial - basic stats.
You can plot the CI band as a patch. So plot it as a polygon, filled with your choice of color. Patch or fill will work here. Make it semi-transparent, so alpha around 0.2 or so.
Then learn how to plot additional curves on one figure, one set of axes. Thus learn how to use the hold command, to cause MATLAB to plot a second curve (and associated confidence band) onto an existing figure.
All easy. Just read the help and examples for a few functions. Spend some time learning the basic stats if you need that to learn how to compute the CI band.
2 Kommentare
John D'Errico
am 16 Feb. 2018
Of course it does not fill it. You need to create the CI bands as ONE curve, NOT as two curves. Go up along one bound, then down to the second, and back along the second curve, with the second curve flipped in sequence so you traverse it backwards. The result will be a closed polygonal region. Then tools can be used to fill that region with your desired color.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Scatter Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!