On Feb 26, 2007, at 3:00 PM, Thaden, John J wrote:

> Thanks for correcting me.  Actually, my windows
> R documentation says "mostattributes()", but it
> makes no difference -- none of the three show
> up as function names or R objects.

That's because there is no "mostattributes" function, it only works  
as an assignment:

?"mostattributes<-"

Example:

 > x <- c(2,3,4)
 > mostattributes(x) <- list(foo="bar")
 > x
[1] 2 3 4
attr(,"foo")
[1] "bar"

> -John

Haris Skiadas
Department of Mathematics and Computer Science
Hanover College

______________________________________________
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to