Is there an easy way to view the source of an R package (or a method in a package), from within the interactive environment?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Just enter the name of a function/method without parentheses:
See also R-Help Desk - Accessing the Sources in R News Volume 6/4, October 2006. |
||||
|
|
|
How you find the source code depends on the type of function. See my answer to this related question. As rcs pointed out, if you want to specify a package, you can use
Not all functions from a package will be exported (i.e. made publically available); for these you need to use
|
|||
|
|
|
To find out which methods you want to see, write Sometimes it does not suffice to |
||||
|