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

Reply via email to