R – argument is of length zero in if statement

“argument is of length zero” is a very specific problem that comes from one of my least-liked elements of R. Let me demonstrate the problem:

> FALSE == "turnip"
[1] FALSE
> TRUE == "turnip"
[1] FALSE
> NA == "turnip"
[1] NA
> NULL == "turnip"
logical(0)

As you can see, comparisons to a NULL not only don’t produce a boolean value, they don’t produce a value at all – and control flows tend to expect that a check will produce some kind of output. When they produce a zero-length output… “argument is of length zero”.

(I have a very long rant about why this infuriates me so much. It can wait.)

So, my question; what’s the output of sum(is.null(data[[k]]))? If it’s not 0, you have NULL values embedded in your dataset and will need to either remove the relevant rows, or change the check to

if(!is.null(data[[k]][[k2]]) & temp > data[[k]][[k2]]){
    #do stuff
}

Hopefully that helps; it’s hard to tell without the entire dataset. If it doesn’t help, and the problem is not a NULL value getting in somewhere, I’m afraid I have no idea.

Leave a Comment