当我创建一个包含 21 列的空 data.frame 时,我遇到了一个有趣的问题:
data.frame(x01 = numeric(),
x02 = numeric(),
x03 = numeric(),
x04 = numeric(),
x05 = numeric(),
x06 = numeric(),
x07 = numeric(),
x08 = numeric(),
x09 = numeric(),
x10 = numeric(),
x11 = numeric(),
x12 = numeric(),
x13 = numeric(),
x14 = numeric(),
x15 = numeric(),
x16 = numeric(),
x17 = numeric(),
x18 = numeric(),
x19 = numeric(),
x20 = numeric(),
x21 = numeric())
我收到以下三个警告:
Warning message in cbind(parts$left, ellip_h, parts$right, deparse.level = 0L):
“number of rows of result is not a multiple of vector length (arg 2)”
Warning message in cbind(parts$left, ellip_h, parts$right, deparse.level = 0L):
“number of rows of result is not a multiple of vector length (arg 2)”
Warning message in cbind(parts$left, ellip_h, parts$right, deparse.level = 0L):
“number of rows of result is not a multiple of vector length (arg 2)”
Warning message in cbind(parts$left, ellip_h, parts$right, deparse.level = 0L):
“number of rows of result is not a multiple of vector length (arg 2)”
但是没有问题,当我创建一个只有 20 列的 df 时,即省略最后一列。问题不是特定于 21 列,有更多列我仍然会收到警告。任何想法是什么问题以及如何处理它?
谢谢!
编辑:这只发生在 Jupyter 中(我在 Ubuntu 上运行 R 版本 3.6.3)