Rev 68017 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
% File src/library/base/man/margin.table.Rd% Part of the R package, https://www.R-project.org% Copyright 1995-2007 R Core Team% Distributed under GPL 2 or later\name{margin.table}\alias{margin.table}\title{Compute table margin}\description{For a contingency table in array form, compute the sum of tableentries for a given index.}\usage{margin.table(x, margin = NULL)}\arguments{\item{x}{an array}\item{margin}{index number (1 for rows, etc.) }}\details{This is really just \code{apply(x, margin, sum)} packaged up fornewbies, except that if \code{margin} has length zero you get\code{sum(x)}.}\seealso{\code{\link{prop.table}} and \code{\link{addmargins}}.}\value{The relevant marginal table. The class of \code{x} is copied to theoutput table, except in the summation case.}\author{Peter Dalgaard}\examples{m <- matrix(1:4, 2)margin.table(m, 1)margin.table(m, 2)}\keyword{array}