convert2presenceAbsence: Convert data into presence/absence data.

View source: R/utils.R

convert2presenceAbsenceR Documentation

Convert data into presence/absence data.

Description

Convert data into presence/absence data.

Usage

convert2presenceAbsence(df, threshold = 2, col2convert = 2:ncol(df))

Arguments

df

The dataframe containing the data to convert.

threshold

The threshold that defines presence (presence if >= threshold)

col2convert

A vector of the columns to convert. Default is all the columns but the first, which contains an age, a depth or a sampleID.

Value

A vector of unique taxonIDs.

Examples

df <- data.frame(matrix(1:25, ncol = 5))
colnames(df) <- paste(rep("col", 5), 1:5, sep = "")
convert2presenceAbsence(df, threshold = 15)
convert2presenceAbsence(df, col2convert = 3:5)

crestr documentation built on Jan. 6, 2023, 5:23 p.m.