[R] error bars around a point

2003-12-20 Thread [EMAIL PROTECTED]
Andy
Thank you.  Downloaded Hmisc using the Packages
button in the RGUI for Windows.  My hat's off to the programmers...
the system of downloading and installing a package works like a champ.
I then tried your code and it too works great.

I've added your suggested http://cran.r-project.org/search.html
to my Favorites list.  Very helpful.
Merry Christmas
REX

Message: 36
Date: Fri, 19 Dec 2003 17:31:52 -0700
From: "Andy Bunn" <[EMAIL PROTECTED]>
Subject: RE: [R] error bars around a point 
To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]>,
<[EMAIL PROTECTED]>
Message-ID: <[EMAIL PROTECTED]>
Content-Type: text/plain; charset="us-ascii"

See errbar in Hmisc. I found this with:

help.search("error bar")

And it's in the html help too. And on the r site:
http://cran.r-project.org/search.html
http://www.google.com/search?q=error+bar&domains=r-project.org&sitesearc
h=r-project.org

# Example
require(Hmisc)
set.seed(1)
x <- 1:10
y <- x + rnorm(10)
delta <- runif(10)
errbar( x, y, y + delta, y - delta )

HTH, Andy



[[alternative HTML version deleted]]

__
[EMAIL PROTECTED] mailing list
https://www.stat.math.ethz.ch/mailman/listinfo/r-help


RE: [R] error bars around a point

2003-12-19 Thread Gabor Grothendieck


Check out plotCI in package gregmisc.

---

Date: Fri, 19 Dec 2003 17:16:43 -0700 
From: [EMAIL PROTECTED] <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]> 
Subject: [R] error bars around a point  

 
 
All
Is there an R command to produce error bars around
a plotted point. Crawley's book uses the command
error.bar() but my version of R rejects it. Must be an
S+ command(?).

Thanks
REX

__
[EMAIL PROTECTED] mailing list
https://www.stat.math.ethz.ch/mailman/listinfo/r-help


RE: [R] error bars around a point

2003-12-19 Thread Andy Bunn
See errbar in Hmisc. I found this with:

help.search("error bar")

And it's in the html help too. And on the r site:
http://cran.r-project.org/search.html
http://www.google.com/search?q=error+bar&domains=r-project.org&sitesearc
h=r-project.org

# Example
require(Hmisc)
set.seed(1)
x <- 1:10
y <- x + rnorm(10)
delta <- runif(10)
errbar( x, y, y + delta, y - delta )

HTH, Andy

__
[EMAIL PROTECTED] mailing list
https://www.stat.math.ethz.ch/mailman/listinfo/r-help


[R] error bars around a point

2003-12-19 Thread [EMAIL PROTECTED]
All
Is there an R command to produce error bars around
a plotted point.  Crawley's book uses the command
error.bar() but my version of R rejects it.  Must be an
S+ command(?).

Thanks
REX

[[alternative HTML version deleted]]

__
[EMAIL PROTECTED] mailing list
https://www.stat.math.ethz.ch/mailman/listinfo/r-help