Skip to contents

Visualise an Ornstein-Uhlenbeck affect simulation using different types of plots. See specific plotting functions for allowed arguments and details.

Usage

# S3 method for class 'simulate_affectOU'
plot(x, type = c("time", "histogram", "acf", "phase"), ...)

Arguments

x

A simulate_affectOU model object produced by simulate.affectOU()

type

Type of plot; one of "time", "histogram", "acf", or "phase"

...

Additional parameters passed to specific plotting functions

Value

NULL (invisibly), called for side effects only.

Details

Available plot types:

See also

Detailed documentation for each plot type:

Examples

# Simulate a 2-dimensional OU affect process
model <- affectOU(ndim = 2)
sim <- simulate(model, nsim = 3)

# Plot simulation
plot(sim, type = "time")

plot(sim, type = "histogram")

plot(sim, type = "acf")

plot(sim, type = "phase")