observables: Observable quantities of the model

Description Usage Format Details Examples

Description

A list of quantities that can be observed. Each entry describes the quantity to observe and its time resolution as well as the cost of the corresponding observation.

Usage

1

Format

A list with the follwing entries: "p6", "p7", "p8", "mrnaHigh", "mrnaLow". Each of those entries is a list with the following slots:

Details

The complete description of the list is as follows

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
data(observables)
data(knobjs)
sapply(	
	1:length(knobjs),
	function(k){
		assign(names(knobjs)[k], knobjs[[k]], envir = .GlobalEnv)
	}
)
data(exps)

theta <- knobjActMult1$datas[[1]]$thetas[1,]
thetaT <- knobjActMult1$transform_params(theta)

temp <- simulate_experiment_no_transform(thetaT, 
	knobjActMult1$global_parameters$initial_conditions, knobjActMult1)

observable <- observables$mrnaLow
temp[temp[,1] %in% observable$reso, colnames(temp) %in% observable$obs]

pauwels2014 documentation built on May 1, 2019, 6:29 p.m.