R/summary.R

Defines functions summary.px

Documented in summary.px

#################################################################
# 
# File:         summary.R
# Purpose:      creates a summary of a px object
#
# Created:      20110630
# Authors:      cjgb
#
# Modifications: 
#
#################################################################

summary.px <- function( object, ... ){
    cat( "\nSummary of metadata:\n" )
    str( object[ which( names( object ) != "DATA" ) ] )

    cat( "\nSummary of data:\n" )
    str( as.data.frame( object ) )
}

Try the pxR package in your browser

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

pxR documentation built on Nov. 23, 2022, 9:06 a.m.