R/print_object_summary.R

Defines functions print_object_summary

## File Name: print_object_summary.R
## File Version: 0.161

print_object_summary <- function( obji, digits)
{
    V <- ncol(obji)
    for (vv in 1L:V){
        if ( is.numeric( obji[,vv] ) ){
            obji[,vv] <- round( obji[,vv], digits=digits )
        }
    }
    print( format(obji, scientific=FALSE), digits=digits )
}

Try the BIFIEsurvey package in your browser

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

BIFIEsurvey documentation built on May 29, 2024, 2:52 a.m.