Hi,
I know that if i want to see the SPLUS or R-source code of a function,i should 
give the command 
without the brackets.For example:
 rsquared.lmRobMM
function(x)
{
 str0 <- "Initial S-estimate"
 str1 <- "Final M-estimate"
 if(x$est == "final") {
  z <- x$r.squared
  attr(z, "info") <- str1
 }
 if(x$est == "initial") {
  z <- x$r.squared
  attr(z, "info") <- str0
 }
 oldClass(z) <- "lmRobMM.info"
 z
}
> 
Is there anybody knows how can i  access all linked code which maybe written in 
the other languages such as c in above program?
Bests,
Arezoo



      
        [[alternative HTML version deleted]]

______________________________________________
R-help@r-project.org 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