R/add.colnames.resp.R

Defines functions add.colnames.resp

## File Name: add.colnames.resp.R
## File Version: 9.09

add.colnames.resp <- function(resp)
{
    if( is.null(colnames(resp)) ){
        I <- ncol(resp)
        colnames(resp) <- paste0("I",1:I)
    }
    return(resp)
}

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.