Learn R Programming

tempR (version 0.10.1.1)

convert.tcata: 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)

Value

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

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

Examples

Run this code
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

Run the code above in your browser using DataLab