convert.tcata: Convert TCATA data

View source: R/tcata.R

convert.tcataR Documentation

Convert TCATA data

Description

Converts TCATA data from a set of onset-offset times to an indicator vector (0s and 1s). Also works for TDS data.

Usage

convert.tcata(X, times, decimal.places = 2)

Arguments

X

matrix with onset (start) times in first column and offset (stop) times in second column

times

time slices for output indicator vector

decimal.places

decimal places used in times; used for naming of the indices of out.vec

Value

out.vec indictor vector(0s and 1s)

Examples

X <- rbind(c(3.18, 6.83), c(8.46, 11.09), c(18.61, 21.80))
times <- seq(0, 25, by = 0.01)
Xnew <- convert.tcata(X, times)
Xnew

tempR documentation built on Sept. 8, 2023, 5:19 p.m.

Related to convert.tcata in tempR...