[Stable]

Read the derived data directly instead of via the nm object which is what input_data() does.

read_derived_data(name, na = ".", silent = FALSE, ...)

Arguments

name

Name or path of file (with or without extension).

na

Character to be passed to utils::read.csv().

silent

Logical (default = TRUE). Should messages be suppressed.

...

Additional arguments to be passed to utils::read.csv().

Value

A data.frame object of the NONMEM dataset.

Examples


## requires NMproject directory structure to operate in
if (FALSE) {

## read a dataset that's been copie into SourceData
d <- read.csv("SourceData/orig_data.csv")

## modify it
d <- d[d$ID < 10, ]

d %>% write_derived_data("DerivedData/data.csv")

## load it again either with
d <- read_derived_data("data")

## or more commonly if it is associated with run (e.g. m1),
## you can use input_data() to load it via the nm object

d <- input_data(m1)
}