I have vector: c("A","1","2","3","B","4","5","D","6","7","8","9","10")
I would like to transform this vector into list: list(A=c(1,2,3),B=c(4,5),...)
Letters from vector are names in list of vectors. Vectors are from number blocks between letters.
A list is a recursive vector: a vector that can contain another vector or list in each of its elements. Lists are one of the most flexible data structures in R.
Convert Vector to List in R or create a list from vector can be done by using as. list() or list() functions. A Vector in R is a basic data structure consist elements of the same data type whereas an R List is an object consisting of heterogeneous elements meaning can contain elements of different types.
To convert Vector to List in R programming, use the as. list() function and pass the vector as a parameter, and it returns the list. The as. list() function convert objects to lists.
Appending to a vector means adding one or more elements at the back of the vector. The C++ vector has member functions. The member functions that can be used for appending are: push_back(), insert() and emplace(). The official function to be used to append is push_back().
Here's one way. Nothing fancy, but it gets the job done.
x <- c("A","1","2","3","B","4","5","D","6","7","8","9","10")
y <- cumsum( grepl("[[:alpha:]]", x) )
z <- list()
for(i in unique(y)) z[[x[y==i][1]]] <- as.numeric(x[y==i][-1])
z
# $A
# [1] 1 2 3
#
# $B
# [1] 4 5
#
# $D
# [1] 6 7 8 9 10
# UPDATE: Trying to be a bit more "fancy"
a <- grepl("[[:alpha:]]", x)
b <- factor(cumsum(a), labels=x[a])
c <- lapply(split(x,b), function(x) as.numeric(x[-1]))
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With