Check if the Object is a List in R Programming - is.list() Function
is.list() function in R Language is used to return TRUE if the specified data is in the form of list, else returns FALSE. Syntax: is.list(X) Parameters: x: different types of data storage Example 1: # R program to illustrate # is.list function # Initializing some list a <- list(1, 2, 3) b <- l