Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modifying Standard Error calculations in ucm function #4

Open
RajarshiBhadra opened this issue May 2, 2016 · 0 comments
Open

Modifying Standard Error calculations in ucm function #4

RajarshiBhadra opened this issue May 2, 2016 · 0 comments

Comments

@RajarshiBhadra
Copy link

The standard error calculations are getting affecting due to the presence of NA s in the ucm function.

The current code for standard error calculation is
se <- sapply(find.indep.var, function(x) mean(sqrt(out$V[x, x, ])))

It has to be modified to
se <- sapply(find.indep.var, function(x) mean(sqrt(out$V[x, x, ]), na.rm=T))

So that NAs are ignored. This takes care of the situations where estimates are available but standard errors are NA in the current code

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant