Re: [R] The code behind the function

2009-09-09 Thread cls59
Chunhao Tu wrote: > > Hi R users, > I have a question. How can I see the code behind the function. For > example, > >> boxplot > function (x, ...) > UseMethod("boxplot") > > > I really would like to see how people code this. Could someone please show > me how to see the code behind the func

Re: [R] The code behind the function

2009-09-09 Thread Erik Iverson
-- How can I see the code behind the function. For example, > boxplot function (x, ...) UseMethod("boxplot") I really would like to see how people code this. -- That *is* the code.