rbind error: “names do not match previous names”

前端 未结 5 445
旧时难觅i
旧时难觅i 2020-12-01 07:16

As part of a larger problem (adding a ,makeUniqueIDs argument to rbind.SpatialPolygonsDataFrame for situations when the polygon IDs are identical),

5条回答
  •  执笔经年
    2020-12-01 07:54

    Use code as follows:

    mylist <- lapply(pressure, function(i)read.xlsx(i,colNames = FALSE))#
    mydata <- do.call('rbind',mylist)#
    

提交回复
热议问题