Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

ylag

Generate subject-level lagged response


Description

Suppose you have longitudinal response y and it's subject id. This function generates lagged y for each subject.

Usage

ylag(id,y,lag,na=FALSE)

Arguments

id

subject id

y

response

lag

how many lags for y

na

logical; whether remain NAs in the response when lag >1. Default to FALSE and output 0s instead of NAs.

Value

return a vector of lagged y

Author(s)

Cong Xu, Zheng Li and Ming Wang

Examples

id <- rep(c(1:20),each=3)
y <- rnorm(length(id))
ylag(id,y,1) #lag=1
ylag(id,y,2,na=FALSE) #lag=2

wgeesel

Weighted Generalized Estimating Equations and Model Selection

v1.5
GPL-2
Authors
Cong Xu <congxu17@gmail.com>, Zheng Li <zheng.li@outlook.com>, Ming Wang <mwang@phs.psu.edu>
Initial release
2018-03-06

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.