profile2fd: Transform distribution and concentration profiles to...

Description Usage Arguments Value Examples

Description

Transform distribution and concentration profiles to functional data objects of class fd.

Usage

1
profile2fd(object, what, ...)

Arguments

object

An object of class distrProfile or conProfile, as returned by distributionProfile and concentrationProfile, respectively.

what

The variable for which the profiles should be transformed to a functional data object.

...

Additional arguments passed on to Data2fd

Value

An object of class fd.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
## Not run: 
library('fda')
data('runs', package = 'trackeR')
dp <- distributionProfile(runs, what = 'speed')
dpFun <- profile2fd(dp, what = 'speed',
    fdnames = list('speed', 'sessions', 'time above threshold'))
dp.pca <- pca.fd(dpFun, nharm = 4)
## 1st harmonic  captures vast majority of the variation
dp.pca$varprop
## time spent above speed = 0 is the characteristic distinguishing the profiles
plot(dp.pca, harm = 1)
sumRuns <- summary(runs)
plot(sumRuns$durationMoving, dp.pca$scores[,1])

## End(Not run)

trackeR documentation built on May 15, 2019, 5:04 p.m.