R语言for循环

基本语法:for (name in expr_1) expr_2

实例操作:

1.构造矩阵

x=array(0,dim=c(4,4)) # 构造四阶矩阵 数值全为0
for (i in 1:4){
    for (j in 1:4){
        x[i,j]=1/(i+j+1)
  }
    }
print(x)
         [,1]      [,2]      [,3]      [,4]
[1,] 0.3333333 0.2500000 0.2000000 0.1666667
[2,] 0.2500000 0.2000000 0.1666667 0.1428571
[3,] 0.2000000 0.1666667 0.1428571 0.1250000
[4,] 0.1666667 0.1428571 0.1250000 0.1111111

2.利用循序进行单位根检验

nrow=20
ncol=5
A=matrix(nrow=nrow,ncol=ncol,data=NA)
for (i in 1:ncol) { A[,i]= rnorm(20, mean=0, sd=1) #构造正太分布,产生20个随机数,服从正太分布 }
library(tseries) #导入所需要的函数包 for (i in 1:5) {print(adf.test(A[,i]))} #AD

 结果如下,很方便.

Augmented Dickey-Fuller Test data: A[, i] Dickey-Fuller = -2.4773, Lag order = 2, p-value = 0.3905 alternative hypothesis: stationary Augmented Dickey-Fuller Test data: A[, i] Dickey-Fuller = -1.8836, Lag order = 2, p-value = 0.6167 alternative hypothesis: stationary Augmented Dickey-Fuller Test data: A[, i] Dickey-Fuller = -3.5647, Lag order = 2, p-value = 0.05491 alternative hypothesis: stationary Augmented Dickey-Fuller Test data: A[, i] Dickey-Fuller = -2.2957, Lag order = 2, p-value = 0.4597 alternative hypothesis: stationary Augmented Dickey-Fuller Test data: A[, i] Dickey-Fuller = -2.2784, Lag order = 2, p-value = 0.4663 alternative hypothesis: stationary

  

F单位根检验

  

 

转载于:https://www.cnblogs.com/jin-liang/p/8922832.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值