[R] plotCI

2006-09-24 Thread Bernardo Rangel tura
Hi R masters! I need a Help with plot confidence intervals for one equation. I use library gplots and plotCI command in this script: require(gplots) ano -1980:2002 rf-exp(91.37162-0.04720281*ano) ciw.f-sqrt(1.766073e-08) plotCI(ano,rf,uiw=ciw.f) But in the graph not shown the errors

Re: [R] plotCI

2006-09-24 Thread David Barron
As the warnings (not errors) suggest, the error bars are just too small to plot. On 24/09/06, Bernardo Rangel tura [EMAIL PROTECTED] wrote: Hi R masters! I need a Help with plot confidence intervals for one equation. I use library gplots and plotCI command in this script: require(gplots)

Re: [R] plotCI

2006-09-24 Thread Jim Lemon
Bernardo Rangel tura wrote: Hi R masters! I need a Help with plot confidence intervals for one equation. I use library gplots and plotCI command in this script: require(gplots) ano -1980:2002 rf-exp(91.37162-0.04720281*ano) ciw.f-sqrt(1.766073e-08) plotCI(ano,rf,uiw=ciw.f)

[R] plotCI : Disabling X axis labels ?

2003-11-26 Thread Al Piszcz
I have my own set of labels for the X axis and typically apply them to other plot modes using: axis(1,at=1:n,labels=xLabels) Where n is the number of character strings in xLabels Is there a parameter to disable plotCI from creating its default labels for the X axis?