2008/11/3 <rkevinburton at charter.net>: > So how do I detect the NULL at r[1]? How can you detect what is not there? Single square brackets on a list give you a list. Double square brackets give you the elements. is.null(r[[1]]) should be TRUE. Barry