Nothing
## File Name: WLErel_exclude_missings.R
## File Version: 0.02
WLErel_exclude_missings <- function(theta, error, w)
{
ind <- which( ! is.na(theta) )
theta <- theta[ind]
error <- error[ind]
w <- w[ind]
#--- OUTPUT
res <- list( theta=theta, error=error, w=w)
return(res)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.