Skip to content
Prev 279157 / 398503 Next

Error in Genetic Matching

The error message is pretty explicit: your problem is taht one of your
inputs has NA (missing value) in it and the GenMatch() function is not
prepared to handle the.  You can find which one by running:

any(is.na(Tr))
any(is.na(X.binarynp)
any(is.na(BalanceMatrix.binarynp))

and then use View() on the object with NAs to take a look and see
where they are coming from.

Michael
On Fri, Dec 2, 2011 at 9:16 AM, shyam basnet <shyamabc2002 at yahoo.com> wrote: