clpm_gam_r {crosslag} | R Documentation |
Title Nonlinear Cross Lag Analysis: autoregression
Description
Title Nonlinear Cross Lag Analysis: autoregression
Usage
clpm_gam_r(xname, yname, data.x1, data.y1, data.xt, data.yt)
Arguments
xname |
If cross lagged analysis is used between x and y, 'xname' is the name of x |
yname |
If cross lagged analysis is used between x and y, 'yname' is the name of y |
data.x1 |
A numeric variable. |
data.y1 |
A numeric variable. 'data.x1' and 'data.y1' comes from the first time point |
data.xt |
A numeric variable. |
data.yt |
A numeric variable. 'data.xt' and 'data.yt' comes from the another time point |
Value
A dataframe containing the result of autoregression: 'Xt~X1' 'Yt~Y1'
Examples
data(test_data1)
data(test_data2)
clpm_gam_r(xname="ASI",yname = "PWRI",data.x1 = test_data1$ASI,
data.y1 = test_data1$PWRI,data.xt = test_data2$ASI,data.yt = test_data2$PWRI)
[Package crosslag version 0.1.0 Index]