I wanted to access the source code of the wilcox.test
function in R (my R GUI: Revolution R Enterprise).
From the console:
> wilcox.test
function (x, ...)
UseMethod("wilcox.test")
<environment: namespace:stats>
From Object Browser, right-click wilcox.test
in stats package, and then clicking "edit" revealed:
function (x, ...)
UseMethod("wilcox.test")
I wanted to know the source code since sometimes the wilcox.test
command produced a value "V=...", sometimes it produced "W=...". The help file of wilcox.test
does not explain what is V and W. Any help will be greatly appreciated.
I want a solution that requires no downloading R source code from CRAN or elsewhere; i.e., I want a solution within GUI (especially, Revo R Ent).