Skip to content
Prev 316660 / 398503 Next

Question on "plotCI" function

You haven't given any "y" values to plotCI.

Try, for example,

plotCI(xx, (lower+upper)/2, ui=upper, (etc)

What you got was in effect
  plot( seq(along=xx), xx )
which is standard behavior for plot() when no "y" values are supplied.

-Don