命名数组维度会出现错误:“dimnames”的长度;不等于数组范围

发布于 2024-09-08 17:38:39 字数 289 浏览 7 评论 0原文

这是我第一次使用三维数组,并且在命名第三维时遇到问题。

ReplicateData <- array(0, c(240, 500, 5), dimnames=list(NULL, NULL, c("Returns", "Replicates", "Asset Class")))

我收到错误:

dimname 的长度不等于数组范围

这似乎应该是一个简单的问题,但我在帮助文档或在线中找不到明确的示例。

This is my first time using a 3 dimensional array and I am having problems about naming the third dimension.

ReplicateData <- array(0, c(240, 500, 5), dimnames=list(NULL, NULL, c("Returns", "Replicates", "Asset Class")))

I am getting the error:

Length of dimnames not equal to array extent

This seems like it should be a simple issue but I can't find an explicit example in the help docs or online.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

坏尐絯℡ 2024-09-15 17:38:39

数组的第三个维度的范围为 5,但该维度的名称向量的长度为 3。

The third dimension of your array is of extent 5, but the vector of names for that dimension is of length three.

春风十里 2024-09-15 17:38:39

因为我通过一些代码来更好地理解答案......这是 Jonathan Chang 的正确答案翻译成代码:

ReplicateData <- array(0,c(240,500,5),dimnames=list(NULL, NULL, 
  c("Returns","Replicates","Asset Class", "Fourth Dimname", "Fifth Dimname")))

Since I understand answers better with a bit 'o code to guide me... here is Jonathan Chang's correct answer translated to code:

ReplicateData <- array(0,c(240,500,5),dimnames=list(NULL, NULL, 
  c("Returns","Replicates","Asset Class", "Fourth Dimname", "Fifth Dimname")))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文