Nothing
## File Name: tam_in_names_list.R
## File Version: 0.04
tam_in_names_list <- function( list, variable )
{
res <- FALSE
names1 <- names(list)
if ( ! is.null(names1) ){
if ( variable %in% names1){
res <- TRUE
}
}
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.