R/sirt_summary_label_equal_value.R

Defines functions sirt_summary_label_equal_value

## File Name: sirt_summary_label_equal_value.R
## File Version: 0.07

sirt_summary_label_equal_value <- function( label, value, label2="", digits=NULL )
{
    if ( ! is.null(digits) ){
        value <- round( value, digits)
    }
    res <- paste0( label, ' ', '=', ' ', value, ' ', label2 )
    return(res)
}

Try the sirt package in your browser

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

sirt documentation built on Aug. 11, 2023, 5:07 p.m.