proportions {base} | R Documentation |
Returns conditional proportions given margins
, i.e.,
entries of x
, divided by the appropriate marginal sums.
proportions(x, margin = NULL)
prop.table(x, margin = NULL)
x |
an array, usually a |
margin |
a vector giving the margins to split by.
E.g., for a matrix |
A table or array like x
, expressed relative to margin
.
prop.table
is an earlier name, retained for back-compatibility.
Peter Dalgaard
apply
and sweep
are more general
mechanisms for sweeping out marginal statistics.
m <- matrix(1:4, 2)
m
proportions(m, 1)
DF <- as.data.frame(UCBAdmissions)
tbl <- xtabs(Freq ~ Gender + Admit, DF)
tbl
proportions(tbl, "Gender")