batch_cols: Batch columns by pattern of missing values

Description Usage Arguments Value Examples

View source: R/batch_cols.R

Description

Identify batches of columns of a matrix that have the same pattern of missing values.

Usage

1
batch_cols(mat, max_batch = NULL)

Arguments

mat

A numeric matrix

max_batch

Maximum batch size

Value

A list containing the batches, each with two components: cols containing numeric indices of the columns in the corresponding batch, and omit containing a vector of row indices that have missing values in this batch.

Examples

1
2
3
4
5
6
x <- rbind(c( 1,  2,  3, 13, 16),
           c( 4,  5,  6, 14, 17),
           c( 7, NA,  8, NA, 18),
           c(NA, NA, NA, NA, 19),
           c(10, 11, 12, 15, 20))
batch_cols(x)

rqtl/qtl2scan documentation built on May 28, 2019, 2:36 a.m.