Re: [R] How could I see the source code of functions in an R package?

2013-05-17 Thread Duncan Murdoch
On 13-05-17 12:01 AM, David Winsemius wrote: Do this search with your favorite search tool Accessing the sources ligges (Uwe Ligges is the author of a comprehensive article on the topic in R News.) That article is also linked from the R help system. After help.start(), look for technical

[R] How could I see the source code of functions in an R package?

2013-05-16 Thread jpm miao
Hi, How could I see the source code of functions in an R package? If we type ?function_name , we will see documentations of the function_name. If we type function_name, is what returns just the source code? Could we just save it in an .R file and modify as we want? However, it seems

Re: [R] How could I see the source code of functions in an R package?

2013-05-16 Thread arun
I see the source code of functions in an R package?    If we type ?function_name , we will see documentations of the function_name.    If we type function_name, is what returns just the source code? Could we just save it in an .R file and modify as we want? However, it seems that sometimes

Re: [R] How could I see the source code of functions in an R package?

2013-05-16 Thread David Winsemius
Do this search with your favorite search tool Accessing the sources ligges (Uwe Ligges is the author of a comprehensive article on the topic in R News.) -- David. On May 16, 2013, at 6:58 PM, jpm miao wrote: Hi, How could I see the source code of functions in an R package? If we type