I am fairly new to R and I have to following situation. I got a text file with contents like this:
[1] a b c d e f g
[2] h i j k
[3] l m n o
[4] x y z
I want to group all characters, belonging to the same identifier ([x]) into an array. Since i want to access all characters of all identifiers, i will need to have a 2-dimensional array (an array of an array). This is what i tried:
> bigvector <- vector()
> bigvector <- append(bigvector, vector())
> bigvector[0][0] <- "Test"
> > bigvector[0][0]
logical(0)
So, no "Test" is returned. I also tried:
> tmpvector <- c("A", "B", "C", "D", "E", "F")
> bigvector <- vector()
> bigvector <- append(bigvector, tmpvector)
> bigvector[0][0]
character(0)
This should be an easy task, however I am struggling to accomplish it.
