Kazo
Kazo

Reputation: 1255

How to present fitted values and CIs from a regression analysis

I conducted a regression analysis in R and obtained fitted values and their confidence intervals. Now, I need to present them in a report. I want to present the fitted values and their confidence intervals in the same plot. Does any one know how to do it? Or, does anyone have a better idea on presenting the fitted values and the CIs some other way?

Upvotes: 0

Views: 240

Answers (1)

h.l.m
h.l.m

Reputation: 13475

You might need to give more information about the specifics of your problem for us to be able to give a fuller answer but since another way of looking at confidence intervals is as error-bars how about looking at this ... http://wiki.stdout.org/rcookbook/Graphs/Plotting%20means%20and%20error%20bars%20(ggplot2)/

or

http://docs.ggplot2.org/current/geom_errorbar.html

Upvotes: 1

Related Questions