How to convert an array to a list in R language?
In R language, you can convert an array to a list using the as.list() function. Here is a simple example code:
# 创建一个数组
my_array <- array(1:6, dim=c(2, 3))
# 将数组转换为列表
my_list <- as.list(my_array)
print(my_list)
By using the above code, you can convert an array named my_array into a list named my_list containing the same elements.