R/bifie_extend_list_length2.R

Defines functions bifie_extend_list_length2

## File Name: bifie_extend_list_length2.R
## File Version: 0.03

bifie_extend_list_length2 <- function(x)
{
    N <- length(x)
    if (N==1){
        x <- list( x[[1]], x[[1]] )
    }
    return(x)
}

Try the BIFIEsurvey package in your browser

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

BIFIEsurvey documentation built on April 5, 2022, 1:14 a.m.