I am running the following code
x=wilcox.test(rnorm(10), rnorm(10))
Now my question is: How to see the R code of this test? When I am running "wilcox.test" in console, it is printing
function (x, ...)
UseMethod("wilcox.test")
<bytecode: 0x3d73148>
<environment: namespace:stats>
This question may be very trivial but I am stuck here.