search for: missingrow

Displaying 1 result from an estimated 1 matches for "missingrow".

Did you mean: missingrows
2001 Feb 27
1
Patch to coplot.R
...a <- as.factor(a) a.levels <- NULL if (have.b) { b.levels <- NULL b.name <- deparse(b) b <- eval(b, data, parent.frame()) if (length(b) != nobs) bad.lengths() if (is.character(b)) b <- as.factor(b) missingrows <- which(is.na(x) | is.na(y) | is.na(a) | is.na(b)) } else { missingrows <- which(is.na(x) | is.na(y) | is.na(a)) b <- NULL b.name <- "" } number <- as.integer(number) if (length(number) == 0 || any(number < 1))...