analyzaData: Determine the type of values in each column of a data frame.

Description Usage Arguments Value Author(s) See Also Examples

Description

For each column, its class and the number of different values is determined. For numeric columns, also the minimum and maximum is computed.

Usage

1

Arguments

dat

A data frame.

Value

A data frame with columns "class", "num.unique", "min", "max", which correspond to properties of columns of dat. The rows in the output data frame correspond to the columns of dat.

Author(s)

Petr Savicky

See Also

readMLData.

Examples

1
2
3
4
5
  pathData <- getPath("exampleData")
  pathDescription <- getPath("exampleDescription")
  dsList <- prepareDSList(pathData, pathDescription)
  dat <- dsRead(dsList, "glass")
  analyzeData(dat)

readMLData documentation built on May 2, 2019, 7:49 a.m.