R/tam_assign_list_elements.R

Defines functions tam_assign_list_elements

Documented in tam_assign_list_elements

## File Name: tam_assign_list_elements.R
## File Version: 0.08

tam_assign_list_elements <- function(x, envir)
{
    x0 <- x
    names(x) <- NULL
    L <- length(x)
    for (cc in 1:L ){
        assign( names(x0)[cc], x[[cc]], envir=envir )
    }
}

Try the TAM package in your browser

Any scripts or data that you put into this service are public.

TAM documentation built on Aug. 29, 2022, 1:05 a.m.