I have 3 different vectors, and i would like to combine then into a list of vectors. But i would like to maintain the names of the vectors in the lists names. Below is the way i've been doing it.
A<-seq(from=1, to=10, by=1)
B<-rep(11,10)
C<-seq(from=50, to=100, by=10)
ABC<-list(A,B,C)
This is the part i would like streamlined
names(ABC)<-c("A", "B", "C")
Thank you.