all_finite {dateutils}R Documentation

Rows with only finite values

Description

Return indexes of rows with only finite values

Usage

all_finite(Y)

Arguments

Y

matrix like data object

Value

Indexes of rows with with only finite values

Examples

X <- matrix(1,10,2)
X[3,1] <- NA
all_finite(X)

[Package dateutils version 0.1.5 Index]