Displaying 1 result from an estimated 1 matches for "colplete".
Did you mean:
collate
2005 Feb 13
1
Bug in cor function (PR#7689)
I can't hardly accept the result of cor function with
pairwize.colplete.obs or complete.obs
insert print statements in cor function,
+ if (method != "pearson") {
+ Rank <- function(u) if (is.matrix(u))
+ apply(u, 2, rank, na.last = "keep")
+ else rank(u, na.last = "keep")
+ x <- Rank...