当前位置: 首页 > 知识库问答 >
问题:

斯帕塔尔宾德。超帧在更新到v1后崩溃。63

章兴发
2023-03-14

在过去的几周里,我在rbind上遇到了问题。hyperframe崩溃后出现以下错误:

错误(函数(...,row.names=NULL,check.rows=FALSE,check.names=TRUE,:提供的行名称长度错误

停止("提供的行名长度错误")

(函数(…,row.names=NULL,check.rows=FALSE,check.names=TRUE,fix.empty.names=TRUE,stringsAsFactors=default.stringsAsFactors()){data.row.names

do.call(data.frame,append(aarg[dfiv],list(row.names=row.names,check.rows=check.rows,check.names=check.names,我的名字是什么?

(函数(…,row.names=NULL,check.rows=FALSE,check.names=TRUE,stringsAsFactors=default.stringsAsFactors()){aarg

do.call(超帧,追加(rslt,列表(stringsAsFactors=FALSE,row.names=rona)))

阿尔宾德。超帧(hfs,hf)

我发现了那条路。hyperframe在自v1以来的最后一次更新中更改。60.添加了用于创建行名称的部分。如果我去掉那个部分,一切都会恢复正常。

# rbind.hyperframe of spatstat v1.63-3
function (...) 
{
    argh <- list(...)
    if (length(argh) == 0) 
        return(NULL)
    argh <- lapply(argh, as.hyperframe)
    nargh <- length(argh)
    if (nargh == 1) 
        return(argh[[1L]])
    dfs <- lapply(argh, as.data.frame, discard = FALSE)
    dfall <- do.call(rbind, dfs)
    dfs0 <- lapply(argh, as.data.frame, discard = TRUE, warn = FALSE)
    df0all <- do.call(rbind, dfs0)
    rslt <- list()
    nam <- names(dfall)
    nam0 <- names(df0all)
    for (k in seq_along(nam)) {
        nama <- nam[k]
        if (nama %in% nam0) {
            rslt[[k]] <- dfall[, k]
        }
        else {
            hdata <- lapply(argh, "[", j = nama, drop = FALSE)
            hdata <- lapply(lapply(hdata, as.list), getElement, 
                name = nama)
            hh <- hdata[[1L]]
            for (j in 2:nargh) {
                hh <- append(hh, hdata[[j]])
            }
            rslt[[k]] <- hh
        }
    }
    rona <- sapply(dfs, row.names) # New code
    rona <- make.names(rona, unique = TRUE) # New code
    names(rslt) <- nam
    out <- do.call(hyperframe, append(rslt, list(stringsAsFactors = FALSE, 
        row.names = rona))) # new code
    return(out)
}
# rbind.hyperframe of spatstat v1.60-1
function (...) 
{
    argh <- list(...)
    if (length(argh) == 0) 
        return(NULL)
    argh <- lapply(argh, as.hyperframe)
    nargh <- length(argh)
    if (nargh == 1) 
        return(argh[[1L]])
    dfs <- lapply(argh, as.data.frame, discard = FALSE)
    dfall <- do.call(rbind, dfs)
    dfs0 <- lapply(argh, as.data.frame, discard = TRUE, warn = FALSE)
    df0all <- do.call(rbind, dfs0)
    rslt <- list()
    nam <- names(dfall)
    nam0 <- names(df0all)
    for (k in seq_along(nam)) {
        nama <- nam[k]
        if (nama %in% nam0) {
            rslt[[k]] <- dfall[, k]
        }
        else {
            hdata <- lapply(argh, "[", j = nama, drop = FALSE)
            hdata <- lapply(lapply(hdata, as.list), getElement, 
                name = nama)
            hh <- hdata[[1L]]
            for (j in 2:nargh) {
                hh <- append(hh, hdata[[j]])
            }
            rslt[[k]] <- hh
        }
    }
    names(rslt) <- nam
    out <- do.call(hyperframe, append(rslt, list(stringsAsFactors = FALSE)))
    return(out)
}

示例代码,其中rbind.hyperframe导致错误

编辑:删除了第一个例子,因为它是不可复制的。这里有两个简短的例子。

> library(spatstat)
Lade nötiges Paket: spatstat.data
Lade nötiges Paket: nlme
Lade nötiges Paket: rpart

spatstat 1.63-3       (nickname: ‘Wet paint’) 
For an introduction to spatstat, type ‘beginner’ 

> 
> for (i in 1:3) {
+     df <- data.frame(1,2,3,4,5)
+     list_of <- listof(rnorm(10))
+     
+     hf <- cbind.hyperframe(df, list_of)
+     
+     if (i == 1) {
+         hfs <- hf
+     } else {
+         hfs <- rbind.hyperframe(hfs, hf)
+     }
+ }
Error in (function (..., row.names = NULL, check.rows = FALSE, check.names = TRUE,  : 
  row names supplied are of the wrong length
> 
> print(hf)
Hyperframe:
   X1 X2 X3 X4 X5        V1
X1  1  2  3  4  5 (numeric)
> print(hfs)
Hyperframe:
     X1 X2 X3 X4 X5        V1
X1    1  2  3  4  5 (numeric)
X1.1  1  2  3  4  5 (numeric)
> 
> 
> for (i in 1:3) {
+     df <- data.frame(1,2,3,4,5)
+     hf <- as.hyperframe.data.frame(df)
+ 
+     if (i == 1) {
+         hfs <- hf
+     } else {
+         hfs <- rbind.hyperframe(hfs, hf)
+     }
+ }
Error in (function (..., row.names = NULL, check.rows = FALSE, check.names = TRUE,  : 
  row names supplied are of the wrong length
> 
> print(hf)
Hyperframe:
  X1 X2 X3 X4 X5
1  1  2  3  4  5
> print(hfs)
Hyperframe:
     X1 X2 X3 X4 X5
X1    1  2  3  4  5
X1.1  1  2  3  4  5
> 
> sessionInfo()
R version 3.6.3 (2020-02-29)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows 10 x64 (build 17134)

Matrix products: default

Random number generation:
 RNG:     Mersenne-Twister 
 Normal:  Inversion 
 Sample:  Rounding 

locale:
[1] LC_COLLATE=German_Germany.1252  LC_CTYPE=German_Germany.1252    LC_MONETARY=German_Germany.1252
[4] LC_NUMERIC=C                    LC_TIME=German_Germany.1252    

attached base packages:
[1] stats     graphics  grDevices utils     datasets  methods   base     

other attached packages:
[1] spatstat_1.63-3     rpart_4.1-15        nlme_3.1-144        spatstat.data_1.4-3

loaded via a namespace (and not attached):
 [1] compiler_3.6.3        deldir_0.1-25         Matrix_1.2-18         spatstat.utils_1.17-0 tools_3.6.3          
 [6] mgcv_1.8-31           abind_1.4-5           splines_3.6.3         grid_3.6.3            polyclip_1.10-0      
[11] goftest_1.2-2         lattice_0.20-38       tensor_1.5 

我在另一台电脑上用旧版本的spatstat测试了它们。新版本的cbind.hyperframe也会更改行名称。

------另一台没有问题的电脑-------------

> library(spatstat)
Lade nötiges Paket: spatstat.data
Lade nötiges Paket: nlme
Lade nötiges Paket: rpart

spatstat 1.60-1       (nickname: ‘Swinging Sixties’) 
For an introduction to spatstat, type ‘beginner’ 


Note: R version 3.6.1 (2019-07-05) is more than 9 months old; we strongly recommend upgrading to the latest version
> 
> for (i in 1:3) {
+     df <- data.frame(1,2,3,4,5)
+     list_of <- listof(rnorm(10))
+     
+     hf <- cbind.hyperframe(df, list_of)
+     
+     if (i == 1) {
+         hfs <- hf
+     } else {
+         hfs <- rbind.hyperframe(hfs, hf)
+     }
+ }
> print(hf)
Hyperframe:
  X1 X2 X3 X4 X5        V1
1  1  2  3  4  5 (numeric)
> print(hfs)
Hyperframe:
  X1 X2 X3 X4 X5        V1
1  1  2  3  4  5 (numeric)
2  1  2  3  4  5 (numeric)
3  1  2  3  4  5 (numeric)
> 
> 
> for (i in 1:3) {
+     df <- data.frame(1,2,3,4,5)
+     hf <- as.hyperframe.data.frame(df)
+ 
+     if (i == 1) {
+         hfs <- hf
+     } else {
+         hfs <- rbind.hyperframe(hfs, hf)
+     }
+ }
> print(hf)
Hyperframe:
  X1 X2 X3 X4 X5
1  1  2  3  4  5
> print(hfs)
Hyperframe:
  X1 X2 X3 X4 X5
1  1  2  3  4  5
2  1  2  3  4  5
3  1  2  3  4  5
> sessionInfo()
R version 3.6.1 (2019-07-05)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows 10 x64 (build 18362)

Matrix products: default

Random number generation:
 RNG:     Mersenne-Twister 
 Normal:  Inversion 
 Sample:  Rounding 

locale:
[1] LC_COLLATE=German_Germany.1252  LC_CTYPE=German_Germany.1252   
[3] LC_MONETARY=German_Germany.1252 LC_NUMERIC=C                   
[5] LC_TIME=German_Germany.1252    

attached base packages:
[1] stats     graphics  grDevices utils     datasets  methods   base     

other attached packages:
[1] spatstat_1.60-1     rpart_4.1-15        nlme_3.1-140        spatstat.data_1.4-0

loaded via a namespace (and not attached):
 [1] compiler_3.6.1        deldir_0.1-23         Matrix_1.2-17        
 [4] spatstat.utils_1.13-0 tools_3.6.1           mgcv_1.8-28          
 [7] abind_1.4-5           splines_3.6.1         grid_3.6.1           
[10] polyclip_1.10-0       goftest_1.1-1         lattice_0.20-38      
[13] tensor_1.5 

共有1个答案

卫皓
2023-03-14

我确认这是一个bug。现在已在开发版本的spatstat(版本1.64-0.001及更高版本)中修复。

错误报告应发布在spatstat软件包错误报告页面

 类似资料:
  • 我正在尝试更新到最新的LibGDX版本1.9.2(我已经使用了一段时间的旧版本),但是在创建了一个新的LibGDX项目并运行了默认的badlogic徽标应用程序之后,它在Android上崩溃了。我已经多次创建了新的LibGDX项目,没有出现任何问题,所以现在肯定有些不同了,因为这次它不起作用了。我的项目中没有错误,桌面项目工作正常,只是在我尝试运行Android项目时崩溃了。 我使用安装应用程序创

  • 我最近把我的OSX更新到了最新的Yosemite版本,现在IntelliJ IDEA 13.1.4还没有开始。 我当前的Java版本: 看起来也没问题。

  • 问题内容: 我的依赖: 但仍然:Google Play服务已过时。需要5208000但找到了5089036 这怎么可能? 更新这项工作: 要么 要么 问题答案: 如果您看不到任何更新,请等到设备上的Play商店更新Google Play服务。 Play商店-Google Play服务 或者,在Google上搜索并安装新的APK,或使用旧版本(如5.0.77或5.0.89)

  • 我遇到了和这个人一样的问题: X-Drupal缓存Drupal 7网站总是打MISS,找不到出路。 我正在运行Drupal7-Pressflow 和 清漆4.0 当我卷曲时,我得到这个结果: 这是上光油。com告诉我:“你应该得到一个金星,给你:金星徽章”。。。。 虽然链接Drupal组织线程中建议的“Varnish Indicator Chrome Extension”告诉我Varnish mi

  • 问题内容: MongoDB刚刚强制将我的Heroku服务器上的更新从2.6更新为3.0 现在,我的应用在启动后不久因以下错误而崩溃: 我检查了他们的状态页,发现Mongo已将其服务器更新为3.0版,而且该更新现在应该稳定了,因此这是我需要做的事情。 在看了一些之后。我发现应该安装新的“驱动程序”以与3.0版兼容。 我发现此链接http://docs.mongodb.org/manual/relea

  • 获取crashpad的版本信息 libcc/src/third_party/crashpad/README.chromium将会有一个带有 校验和(checksum)的Revision:信息 检出到相应的分支 获取Google的奔溃报告 (https://chromium.googlesource.com/crashpad/crashpad), git clone https://chromium