show: Show Method For 'sdcHashClass' Objects

Description Usage Arguments Details Methods (by class) Examples

Description

Returns an abbreviated summary of a sdcHashClass object.

The summary method runs and returns the output of some calculations on an sdcHashClass object, together with an abbreviated summary of the object itself.

Usage

1
2
3
4
5
## S4 method for signature 'sdcHashClass'
show(object)

## S4 method for signature 'sdcHashClass'
summary(object)

Arguments

object

A sdcHashClass object.

Details

As described in the documentation for show, the default for printing out S4 objects is a call to a show method, whereas print is the default for S3 objects. This gives the possibility to have an alternative way to print the contents of a user-defined S4 class object.

Methods (by class)

Examples

1
2
3
4
5
show(new("sdcHashClass"))
summary(new("sdcHashClass"))
my.X <- data.frame(matrix(ifelse(runif(500)>.5, TRUE, FALSE), ncol = 5))
my.hc <- new("sdcHashClass", X = my.X)
summary(my.hc)

sdcTarget documentation built on May 2, 2019, 8:16 a.m.