Learn R Programming

sjmisc (version 2.0.1)

flat_table: Flat (proportional) tables

Description

This function creates a labelled flat table or flat proportional (marginal) table.

Usage

flat_table(.data, ..., margin = c("counts", "cell", "row", "col"), digits = 2)

Arguments

.data
A data frame.
...
One or more variables of .data that should be printed as table.
margin
Specify the table margin that should be computed for proportional tables. By default, counts are printed. Use margin = "cell", margin = "col" or margin = "row" to print cell, column or row percentages of the table margins.
digits
Numeric; for proportional tables, digits indicates the number of decimal places.

Value

An object of class ftable.

See Also

frq for simple frequency table of labelled vectors.

Examples

Run this code
data(efc)

# flat table with counts
flat_table(efc, e42dep, c172code, e16sex)

# flat table with proportions
flat_table(efc, e42dep, c172code, e16sex, margin = "row")

Run the code above in your browser using DataLab