DescTools (version 0.99.8.1)

Desc.data.frame: Describe a data.frame Or a List

Description

Describes all the columns of a data.frame, resp. all the elements of a list, according to their class.

Usage

## S3 method for class 'data.frame':
Desc(x, sep = paste(rep("-", 
                (as.numeric(options("width")) - 2)), collapse = ""), ...)

Arguments

x
the data.frame, the matrix or the list to be described
sep
character. The separator for the title.
...
the dots are passed to the child functions.

Value

  • No results are returned.

Details

See detailed information in the description of the according object interfaces.

See Also

Desc, PlotDesc

Examples

Run this code
Desc(d.pizza[,c("temperature","count","driver","date","wine_delivered")] )

Desc(as.list(d.pizza[,c("temperature","count","driver","date","wine_delivered")]) )

Run the code above in your browser using DataCamp Workspace