1

我们正在为我们的 R 包添加一个小插图。使用 记录包roxygen2时,小插图中断并给出错误

Error in tMatrix[i, j, ] <- testVec : 
  number of items to replace is not a multiple of replacement length

但是,使用devtools::document()or devtools::build_vignettes(),小插图构建得很好。

位于此处的最小示例。

4

1 回答 1

2

这是因为 R 在构建包时设置LC_COLLATEC,这通常不是您在 Github 问题yihui/knitr#1719中提到的常见操作系统的语言环境的整理顺序。因为sort()makeArray()在最小示例中使用了函数,并且sort()依赖于LC_COLLATE,所以您将在 R 控制台(LC_COLLATE通常不是C)和R CMD build. 要重现错误:

# Copied from https://github.com/GilChrist19/vignetteExample/blob/8973dbc/vignetteExample/R/array.R#L8-L45
makeArray <- function(names = c("AA", "Aa", "aa")){


  size <- length(names)
  tMatrix <- array(data=0, dim=c(size, size, size), dimnames=list(names, names, names))
  testVec <- setNames(object = numeric(size), nm = names)

  # fill up the array
  for (i in names)
  {
    for (j in names)
    {

      j_name <- strsplit(j, split='')[[1]]
      i_name <- strsplit(i, split='')[[1]]
      ij_prod <- as.vector( outer(j_name, i_name, paste0, sep='') )

      # sort
      ij_prod <- vapply( strsplit(ij_prod, split=''),
                           function(x) {paste0(sort(x, decreasing=TRUE), collapse='')},
                           FUN.VALUE = character(1))

      for (k in ij_prod)
      {
        testVec[k] <- testVec[k]+5
      }

      # testVec[] <- testVec/sum(testVec)

      tMatrix[i,j, ] <- testVec

      testVec[] <- 0
    }
  }


  return(tMatrix)
}


Sys.setlocale('LC_COLLATE', 'C')
makeArray()

sort()由于我不熟悉您的功能,因此我将由您决定如何处理。我可以给出的一个提示是sort(method = 'radix')始终遵循C语言环境,因此对不同的语言环境更加健壮。

于 2019-06-07T05:26:13.310 回答