Displaying 1 result from an estimated 1 matches for "binarymiss".
Did you mean:
binarymime
2000 Sep 07
1
R function writing question
Hi there!
I'm looking for a better way of getting the following code working --
can you help? Instead of having to type in:
binarymissing(y ~ x1 + x2,data=mydata,na.action=na.keep)
as my function call, I would prefer not having to type in
na.action=na.keep each time as this will always be the same.
The function na.keep is simply: na.keep <- function(X){X}
The first few lines of the function binarymissing are:
binar...