zoukankan      html  css  js  c++  java
  • 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单位根检验

      

  • 相关阅读:
    AD9 如何画4层pcb板
    在Altium Designer 2009下如何添加Logo图
    [置顶] 整数拆分 整合算法
    altium designer 中的top/bottom solder和top/bottom paste mask
    vs2012 与 win7 不兼容的问题
    poj1742 Coins
    poj3181 Dollar Dayz
    poj1065 Wooden Sticks
    poj1631 Bridging signals
    poj3666 Making the Grade
  • 原文地址:https://www.cnblogs.com/jin-liang/p/8922832.html
Copyright © 2011-2022 走看看