base (version 3.1.3)

prop.table: Express Table Entries as Fraction of Marginal Table

Description

This is really sweep(x, margin, margin.table(x, margin), "/") for newbies, except that if margin has length zero, then one gets x/sum(x).

Usage

prop.table(x, margin = NULL)

Arguments

x
table
margin
index, or vector of indices to generate margin for

Value

Table like x expressed relative to margin

See Also

margin.table

Examples

Run this code
m <- matrix(1:4, 2)
m
prop.table(m, 1)

Run the code above in your browser using DataCamp Workspace