在R语言中,可以使用length()
函数来检查数组是否为空。如果数组为空,length()
函数将返回0,否则返回数组的长度。
例如:
my_array <- c()
if (length(my_array) == 0) {
print("Array is empty")
} else {
print("Array is not empty")
}
在上面的示例中,如果my_array
数组为空,则输出"Array is empty",否则输出"Array is not empty"。