SummaryData: The summary of measures for categorical data

Description Usage Arguments Details Value Author(s) See Also Examples

View source: R/500.SummaryMeasuresCategoricalData20170518.R

Description

The summary of measures for categorical data

Usage

1
SummaryData(inpmat, min = NULL, max = NULL)

Arguments

inpmat

- The input matrix

min

- The minimum of the range of interest

max

- The minimum of the range of interest

Details

The function calculates the summary using

Value

A list of dataframes

SumZeroData

Count of rows and columns that contain all zeros, in a given matrix

SumCount

Count of cells in a given matrix with value of zero or value within the range specified as min and max

SumMinMaxRange

Calculates the min, max and range of values in a given matrix

SumMedianSD

Calculates median, SD, upper limit, lower limit and cell values within these limits

Author(s)

Subbiah and Balakrishna S Kesavan

See Also

Other The summary of measures for categorical data: SumCount, SumMedianSD, SumMinMaxRange, SumZeroData

Examples

1
2
3
4
5
6
x=c(7,61,55,129,489,570,475,431,293,154,38,12)
inpmat = cbind(x[1:4],x[5:8],x[9:12])
min = 0
max = 150
SummaryData(inpmat, min, max)
SummaryData(inpmat)

RajeswaranV/vcdPlus documentation built on May 27, 2019, 7:28 a.m.