isempty | R Documentation |
Determine whether array is empty. An empty array, table, or timetable has at least one dimension with length 0, such as 0-by-0 or 0-by-5.
isempty(x)
x |
array |
Emulates the behavior of the isempty
function on Matlab
A logical value determining if x is empty
isempty(array(dim = c(0, 2, 2))) isempty(matrix(rep(NA, 4), 2)) isempty(matrix(rep(0, 4), 2)) isempty(as.factor(c(NA, NA))) isempty(factor()) isempty(matrix(rep("", 3)))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.