miscTools (version 0.6-22)

rowMedians: Medians of Rows

Description

Compute the sample medians of the rows of a data.frame or matrix.

Usage

rowMedians( x, na.rm = FALSE )

Arguments

x

a data.frame or matrix.

na.rm

a logical value indicating whether NA values should be stripped before the computation proceeds.

Value

A vector of the medians of each row of x.

See Also

colMedians,median,colMeans.

Examples

Run this code
# NOT RUN {
   m <- matrix( 1:12, nrow = 4 )
   rowMedians( m )
# }

Run the code above in your browser using DataCamp Workspace