plotMean: Plots mean of time continous-time weights

Description Usage Arguments Examples

Description

Preliminary plot of mean of individual weight-trajectories

Usage

1
plotMean(weights, startTime, stopTime, pTimes)

Arguments

weights
startTime

Start of at-risk interval

stopTime

Stop of at-ris interval

pTimes

Times where the mean should be plotted.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function (weights, startTime, stopTime, pTimes) 
{
    n <- length(pTimes)
    y <- rep(0, n)
    for (j in 1:n) {
        J <- (startTime <= pTimes[j]) & (stopTime >= pTimes[j])
        y[j] <- mean(weights[J], na.rm = T)
    }
    lines(pTimes, y, col = "red")
  }

kjetilroysland/ahw documentation built on May 20, 2019, 10:25 a.m.