runSimulee: Run a single simulee through the given simulation.

Description Usage Arguments Value Examples

View source: R/simulator.R

Description

Run a single simulee through the given simulation.

Usage

1
runSimulee(simulee, simulation)

Arguments

simulee

A tibble containing at least one simulee, the first row will be used.

simulation

An object defining the test to be run.

Value

A tibble containing the completed simulee test output.

Examples

1
2
3
4
5
  options(warn=-1)
  simulation = initSimulation(readRDS(system.file("example/workshop2pl-small-optimal.rds", package = "CATSimulator")))
  simulation$control$solver = list(name = "lpsolve", external = F, mipGap = 0.0001, timeout = 1000, verbose = F)
  simulee = generateSimuleesByTrueTheta(-2, 10001)
  simuleeOut = runSimulee(simulee, simulation)

yuehmeir2/CATSimulator documentation built on June 13, 2021, 7:02 p.m.