View source: R/kin.setDataCols.R
kin.setDataCols | R Documentation |
Sets the standard column names used for kinesis data analysis. These columns typically include subject identifier, frame number, time, time difference, and trial number.
kin.setDataCols(
subjName = "subjName",
frameN = "frameN",
time = "time",
deltaTime = "deltaTime",
trialN = "trialN"
)
subjName |
Character string specifying the column name for subject identifier. Default is "subjName". |
frameN |
Character string specifying the column name for frame number. Default is "frameN". |
time |
Character string specifying the column name for time measurements. Default is "time". |
deltaTime |
Character string specifying the column name for time differences. Default is "deltaTime". |
trialN |
Character string specifying the column name for trial number. Default is "trialN". |
None (invisibly). Updates the internal kinesis_parameters environment.
# Use default column names
kin.setDataCols()
# Customize column names
kin.setDataCols(subjName = "participant",
frameN = "frame",
time = "timestamp",
deltaTime = "dt",
trialN = "trial")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.