Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/arrays/13.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Arrays 从R中的另一个3D阵列填充3D阵列的最快方法_Arrays_R - Fatal编程技术网

Arrays 从R中的另一个3D阵列填充3D阵列的最快方法

Arrays 从R中的另一个3D阵列填充3D阵列的最快方法,arrays,r,Arrays,R,我使用下面的代码从另一个3D数组填充3D数组。我已经使用了sapply函数在每个个体(第三维)应用代码行,如中所示。 这是我的密码 ind <- 1000 individuals <- as.character(seq(1, ind, by = 1)) maxCol <- 7 col <- 4 line <- 0 a <- 0 b <- 0 c <- 0 col_array <

我使用下面的代码从另一个3D数组填充3D数组。我已经使用了
sapply
函数在每个个体(第三维)应用代码行,如中所示。 这是我的密码

ind <- 1000
    individuals <- as.character(seq(1, ind, by = 1))
    maxCol <- 7
    col <- 4
    line <- 0
    a <- 0
    b <- 0
    c <- 0

    col_array <- c("year","time", "ID", "age", as.vector(outer(c(paste(seq(0, 1, by = 1), "year", sep="_"), paste(seq(2, maxCol, by = 1), "years", sep="_")), c("S_F", "I_F", "R_F"), paste, sep="_")))
    array1 <- array(sample(1:100, length(col_array), replace = T), dim=c(2, length(col_array), ind), dimnames=list(NULL, col_array, individuals)) ## 3rd dimension = individual ID
    ## print(array1)

    col_array <- c("year","time", "ID", "age", as.vector(outer(c(paste(seq(0, 1, by = 1), "year", sep="_"), paste(seq(2, maxCol, by = 1), "years", sep="_")), c("S_M", "I_M", "R_M"), paste, sep="_")))
    array2 <- array(NA, dim=c(2, length(col_array), ind), dimnames=list(NULL, col_array, individuals)) ## 3rd dimension = individual ID
    ## print(array2)

    tic("array2")
    array2 <- sapply(individuals, function(i){

      ## Fill the first columns
      array2[line + 1, c("year", "time", "ID", "age"), i] <- c(a, b, i, c)

      ## Define column indexes for individuals S
      col_start_S_F <- which(colnames(array1[,,i])=="0_year_S_F")
      col_end_S_F <- which(colnames(array1[,,i])==paste(maxCol,"years_S_F", sep="_"))
      col_start_S_M <- which(colnames(array2[,,i])=="0_year_S_M")
      col_end_S_M <- which(colnames(array2[,,i])==paste(maxCol,"years_S_M", sep="_"))

      ## Fill the columns for individuals S
      p_S_M <- sapply(0:maxCol, function(x){pnorm(x, 4, 1)})
      array2[line + 1, col_start_S_M:col_end_S_M, i] <- round(as.numeric(as.vector(array1[line + 1, col_start_S_F:col_end_S_F, i]))*p_S_M)

      ## Define column indexes for individuals I
      col_start_I_F <- which(colnames(array1[,,i])=="0_year_I_F")
      col_end_I_F <- which(colnames(array1[,,i])==paste(maxCol,"years_I_F", sep="_"))
      col_start_I_M <- which(colnames(array2[,,i])=="0_year_I_M")
      col_end_I_M <- which(colnames(array2[,,i])==paste(maxCol,"years_I_M", sep="_"))

      ## Fill the columns for individuals I
      p_I_M <- sapply(0:maxCol, function(x){pnorm(x, 2, 1)})
      array2[line + 1, col_start_I_M:col_end_I_M, i] <- round(as.numeric(as.vector(array1[line + 1, col_start_I_F:col_end_I_F, i]))*p_I_M)

      ## Define column indexes for individuals R
      col_start_R_M <- which(colnames(array2[,,i])=="0_year_R_M")
      col_end_R_M <- which(colnames(array2[,,i])==paste(maxCol,"years_R_M", sep="_"))

      ## Fill the columns for individuals R
      array2[line + 1, col_start_R_M:col_end_R_M, i] <- as.numeric(as.vector(array2[line + 1, col_start_S_M:col_end_S_M, i])) + 
        as.numeric(as.vector(array2[line + 1, col_start_I_M:col_end_I_M, i]))

      return(array2[,,i])
      ## print(array2[,,i])

    }, simplify = "array") 
    ## print(array2)
    toc()

indTL;DR:这里有一个tidyverse解决方案,可以将样本数组转换为数据帧,并应用请求的更改。EDIT:我添加了步骤1+2,将原始帖子的样本数据转换为步骤3中使用的格式。步骤3中的实际计算速度非常快(这看起来很可疑,如果是数组,你应该使用长格式的data.table。我同意@Roland。如果你可以矢量化和处理长表,而不是对50万人分别循环和应用类似的计算,看起来会快得多。我正在尝试使用
dplyr
tidyr
这可能足够快;如果没有,我相信其他人可以用data.table或base R找到一个更快的解决方案。您的示例代码执行是否正确?
array2
函数似乎永远不会触及第一维中的第二个元素(仅第一个元素=“行0+1”),所以我不确定那个维度是用来做什么的。
年、
时间
ID
age`可以是单独的维度。@Jon Spring:是的,它是正确的。该函数只使用数组中的第一行1。非常感谢Jon Spring的回答。在我的示例中,输出是一个数组。有可能有一个数组吗?或者有一个数组作为输出是一个坏主意吗?我怎样才能获得一个3D数组作为输出?我确信这是可能的,但超出了我目前的知识范围。以下是一些我认为很接近但挂起的代码:
output%select(-I_F,-R_F,-s_F)%>%gather(Var1,Freq,s_m:rm)%%>%mutate(year=if_-else(year>1,paste0(year,“_-years”))%%>%unite(Var1,c(“year”,“Var1”))新列数组%filter(ID==“1”)%%>%pull(Var1)非常感谢Jon Spring!我正在测试每个代码行,因为我不熟悉dplyr包。似乎变量“ID”不是使用
arrange(ID)
)按升序排列的!是的,我认为目前它是字符。可以用
mutate(ID=as.integer(ID);arrange(ID)替换上面步骤2的结尾
然后它将按预期进行排序。
ind <- 500000
individuals <- as.character(seq(1, ind, by = 1))
maxCol <- 7
col <- 4
line <- 0
a <- 0
b <- 0
c <- 0

col_array <- c("year","time", "ID", "age", as.vector(outer(c(paste(seq(0, 1, by = 1), "year", sep="_"), paste(seq(2, maxCol, by = 1), "years", sep="_")), c("S_F", "I_F", "R_F"), paste, sep="_")))
array1 <- array(sample(1:100, length(col_array), replace = T), dim=c(2, length(col_array), ind), dimnames=list(NULL, col_array, individuals)) ## 3rd dimension = individual ID

dim(array1)
# [1]      2     28 500000    # Two rows x 28 measures x 500k individuals
library(tidyverse)
# OP only uses first line of array1. If other rows needed, replace with "array1 %>%"
#   and adjust renaming below to account for different Var1.
array1_dt <- array1[1,,] %>% 
  as.data.frame.table(stringsAsFactors = FALSE)
array1_dt_reshape <- array1_dt %>%
  rename(stat = Var1, ID = Var2) %>%
  filter(!stat %in% c("year", "time", "ID", "age")) %>%
  mutate(year = stat %>% str_sub(end = 1),
         col  = stat %>% str_sub(start = -3)) %>%
  select(-stat) %>%
  spread(col, Freq) %>%
  arrange(ID)
array_transform <- function(input_data = array1_dt_reshape, 
                           max_yr = 7, S_M_mean = 4, I_M_mean = 2) {
  tictoc::tic()
  # First calculate the distribution function values to apply to all individuals, 
  #   depending on year.
  p_S_M_vals <- sapply(0:max_yr, function(x){pnorm(x, S_M_mean, 1)})
  p_I_M_vals <- sapply(0:max_yr, function(x){pnorm(x, I_M_mean, 1)})

  # For each year, scale S_M + I_M by the respective distribution functions.
  #   This solution relies on the fact that each ID has 8 rows every time,
  #   so we can recycle the 8 values in the distribution functions.
  output <- input_data %>% 
    # group_by(ID) %>%  <-- Not needed
    mutate(S_M = S_F * p_S_M_vals,
           I_M = I_F * p_I_M_vals,
           R_M = S_M + I_M)  # %>% ungroup  <-- Not needed
  tictoc::toc()
  return(output)
}


array1_output <- array_transform(array1_dt_reshape)
head(array1_output)
   ID year I_F R_F S_F          S_M        I_M         R_M
1   1    0  16  76  23 7.284386e-04  0.3640021   0.3647305
2   1    1  46  96  80 1.079918e-01  7.2981417   7.4061335
3   1    2  27  57  76 1.729010e+00 13.5000000  15.2290100
4   1    3  42  64  96 1.523090e+01 35.3364793  50.5673837
5   1    4  74  44  57 2.850000e+01 72.3164902 100.8164902
6   1    5  89  90  64 5.384606e+01 88.8798591 142.7259228
7   1    6  23  16  44 4.299899e+01 22.9992716  65.9982658
8   1    7  80  46  90 8.987851e+01 79.9999771 169.8784862
9   2    0  16  76  23 7.284386e-04  0.3640021   0.3647305
10  2    1  46  96  80 1.079918e-01  7.2981417   7.406133