simulate_incidence_stats: Calculate theoretical values like x.los, x.loi and other...

Description Usage Arguments Value Examples

Description

Calculate theoretical values like x.los, x.loi and other characteristics of the patient population

Usage

1
2
simulate_incidence_stats(hospital, steps = 365 * 10000,
  n.sim.pat = 5000)

Arguments

hospital

type of hospital as a list-object (see vignette for details)

steps

number of steps to evolve process

n.sim.pat

size of simulations to estimate individual characteristics of patients

Value

list with following components

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
pat.1 <- list(dist.X.los = create_dist_vec(
                               function(x) dpois(x-1, lambda = 12), 70),
I.p = 0.008,
dist.X.loi = create_dist_vec(function(x) dpois(x-1, lambda = 10), 70))

pat.2 <- list(dist.X.los = 
                create_dist_vec(function(x) dpois(x-1, lambda = 10), 70),
              I.p = 0.02,
              dist.X.loi = 
                create_dist_vec(function(x) dpois(x-1, lambda = 7), 70))

patient.list <- list(pat.1, pat.2)


# define distribution of patients
pat.1.prob <- 0.4; pat.2.prob <- 0.6
pat.dist.hosp <- c(pat.1.prob, pat.2.prob)
hospital.1 <- list(inc.factor = 1,
                   pat.dist = pat.dist.hosp,
                   patient.list = patient.list)
data.pps <- simulate_pps_data(n.sample=1000, steps=200, hospital=hospital.1) 
data.inc.theo <- simulate_incidence_stats(hospital.1, 365 * 1000)
# gives incidence rate I
data.inc.theo$I
# gives incidence proportion per admission
data.inc.theo$I.pp

prevtoinc documentation built on June 18, 2019, 5:05 p.m.