Learn R Programming

IncDTW (version 1.1.4.4)

drink_glass: Accelerometer: drink a glass, walk, brush teeth.

Description

3-dimensional acceleration time series recorded during the activities of walking, drinking a glass or brushing teeth.

Usage

data("drink_glass")

Arguments

Format

A list of matrices, where each matrix has 3 columns (x, y, and z axis of the accelerometer). The number of rows differ.

Details

list of 3-dimensional time series stored as matrix. The data is recorded with 32Hz. The data is z-scaled (z-normalized).

Examples

Run this code
# NOT RUN {
data(drink_glass)
class(drink_glass)
length(drink_glass)
dim(drink_glass[[1]])
matplot(drink_glass[[1]], type="l")

data(walk)
class(walk)
length(walk)
dim(walk[[1]])
matplot(walk[[1]], type="l")

data(brush_teeth)
class(brush_teeth)
length(brush_teeth)
dim(brush_teeth[[1]])
matplot(brush_teeth[[1]], type="l")
# }

Run the code above in your browser using DataLab