Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

generateLongData

Generate longitudinal test data


Description

Generate longitudinal test data

Usage

generateLongData(
  sizes = c(40, 60),
  fixed = Value ~ 1 + Time,
  cluster = ~1 + Time,
  random = ~1,
  id = getOption("latrend.id"),
  data = data.frame(Time = seq(0, 1, by = 0.1)),
  fixedCoefs = c(0, 0),
  clusterCoefs = cbind(c(-2, 1), c(2, -1)),
  randomScales = cbind(0.1, 0.1),
  rrandom = rnorm,
  noiseScales = c(0.1, 0.1),
  rnoise = rnorm,
  clusterNames = LETTERS[seq_along(sizes)],
  shuffle = FALSE
)

Arguments

sizes

Number of strata per cluster.

fixed

Fixed effects formula.

cluster

Cluster effects formula.

random

Random effects formula.

id

Name of the strata.

data

Data with covariates to use for generation. Stratified data may be specified by adding a grouping column.

fixedCoefs

Coefficients matrix for the fixed effects.

clusterCoefs

Coefficients matrix for the cluster effects.

randomScales

Standard deviations matrix for the size of the variance components (random effects).

rrandom

Random sampler for generating the variance components at location 0.

noiseScales

Scale of the random noise passed to rnoise. Either scalar or defined per cluster.

rnoise

Random sampler for generating noise at location 0 with the respective scale.

clusterNames

A character vector denoting the names of the generated clusters.

shuffle

Whether to randomly reorder the strata in which they appear in the data.frame.

Examples

longdata <- generateLongData(sizes = c(40, 70), id = "Id",
                            cluster = ~poly(Time, 2, raw = TRUE),
                            clusterCoefs = cbind(c(1, 2, 5), c(-3, 4, .2)))
plotTrajectories(longdata, response = "Value", id = "Id", time = "Time")

latrend

A Framework for Clustering Longitudinal Data

v1.1.2
GPL (>= 2)
Authors
Niek Den Teuling [aut, cre] (<https://orcid.org/0000-0003-1026-5080>), Steffen Pauws [ctb], Edwin van den Heuvel [ctb], Copyright © 2021 Koninklijke Philips N.V. [cph]
Initial release
2021-04-14

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.