design(tslars)
design()所属R语言包:tslars
Function to create a design matrix.
函数来创建一个设计矩阵。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Given the lag length and the forecast horizon, the design-function will build the appropriate design matrix, which can then be used in a regression analysis.
给定的的滞后长度和预测视界,设计函数将建立适当的设计矩阵,然后,可以使用在一个回归分析。
用法----------Usage----------
design(x = NULL, y, p, h, ary = FALSE)
参数----------Arguments----------
参数:x
the matrix of predictors
的预测值的矩阵
参数:y
the vector of the response
响应的矢量的
参数:p
the lag length
滞后长度
参数:h
the forecast horizon
预测地平线
参数:ary
logical, in ary=T, the design matrix corresponds to that of an autoregressive model.
逻辑,在ary=T,设计矩阵对应于自回归模型。
值----------Value----------
The design-function returns an appropriate matrix that can be used to fit a time series regression model. It includes laggen values of the response y and of all predictors in x up to lag p.
设计函数返回一个适当的矩阵,该矩阵可用于适合时间序列回归模型。它包括laggen响应y和x中的所有预测变量的值落后于p。
(作者)----------Author(s)----------
Sarah Gelper
实例----------Examples----------
y <- rnorm(100)
x <- matrix(rnorm(300),ncol=3)
designmatrix <- design(x,y,p=2,h=1,ary=FALSE)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|