ExcludeCells: Excludes unusable cells.

Description Usage Arguments Examples

Description

Exclude cells whose observations are unusable.

Usage

1
ExcludeCells(d, Threshold = 0.5)

Arguments

d
Threshold

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function (d, Threshold = 0.5) 
{
    PercentMissing <- apply(d, 1, FUN = function(x) {
        return((length(x) - length(na.omit(x)))/length(x))
    })
    Exclusion <- which(PercentMissing >= Threshold)
    ExclusionCells <- d[, 1][Exclusion]
    if (length(Exclusion) > 0) {
        Dat <- d[-Exclusion, ]
        Dd <- list(ExclusionList = ExclusionCells, Data = Dat)
    }
    else {
        Dat <- d
        Dd <- list(ExclusionList = ExclusionCells, Data = Dat)
    }
    return(Dd)
  }

bvnlab/SCATTome documentation built on May 13, 2019, 9:05 a.m.