Learn R Programming

mrgsolve (version 0.8.12)

as_data_set: Create a simulatinon data set from ev objects

Description

Create a simulatinon data set from ev objects

Usage

as_data_set(x, ...)

# S4 method for ev as_data_set(x, ...)

# S4 method for data.frame as_data_set(x, ...)

Arguments

x

ev objects

...

more ev objects

Value

a data frame suitable for passing into data_set

Details

The goal is to take a series of event objects and combine them into a single data set that can be passed to data_set. Each event object is added to the data frame as an ID or set of IDs that are distinct from the IDs in the other event objects. Note that including ID argument to the ev call where length(ID) is greater than one will render that set of events for all of IDs that are requested.

To get a data frame with one row (event) per ID look at expand.ev.

Examples

Run this code
# NOT RUN {
as_data_set(ev(amt=c(100,200), cmt=1, ID=1:3),
            ev(amt=300, time=24, ID=1:2),
            ev(amt=1000, ii=8, addl=10, ID=1:3))

# Instead of this, use expand.ev
as_data_set(ev(amt=100), ev(amt=200),ev(amt=300))

# }

Run the code above in your browser using DataLab