In the process of checking a package, I get the warning
Foreign function calls without 'PACKAGE' argument:
.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
[[alternative HTML version deleted]]
______________________________________________
[email protected] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.