Displaying 1 result from an estimated 1 matches for "trxy".
Did you mean:
troy
2006 Sep 01
1
Checking a package: "Foreign function calls without 'PACKAGE' argument:" - what must I do??
...:
.Call("tr", ...)
.Call("trProd", ...)
See section 'System and foreign language interfaces' of the 'Writing R..
These functions are called using the wrappers
trX <- function(x, package="gRcox") { .Call("tr", x, package="gRcox") }
trXY <- function(x, y, package="gRcox") { .Call("trProd", x, y, package="gRcox") }
I can't figure out what I am supposed to - and reading the specific section of "writing R extensions.." does not help me.
Can anyone help?
Thanks
Søren
[[alternati...