I have a list of sparse vectors (in R). I need to convert this list to a sparse matrix. Doing it via a for-loop takes a long time.
sm<-spMatrix(length(tc2),n.col)
for(i in 1:length(tc2)){
sm[i,]<-(tc2[i])[[1]];
}
Is there a better way?
|
I have a list of sparse vectors (in R). I need to convert this list to a sparse matrix. Doing it via a for-loop takes a long time.
Is there a better way? |
|||
| show 1 more comment |
|
Here is a two step solution:
|
|||||
|
|
Thanks to Josh O'Brien for suggesting a solution: create 3 lists, then create sparseMatrix. I include the code for this here:
|
||||
|
|
tc2[[1]]as a numeric vector with a lot of 0s, or do you use a sparse matrix to represent each vector? Can you give an example of the data to work with? – Iterator Jan 13 '12 at 0:59sparseMatrix()constructor function. You'll need three vectors (possibly organized as the columns of a data frame), that represent the row index, column index, and value of each entry. Run this toy example to see how it works, and then let me know how this goes:sparseMatrix(i=1:4, j=4:1, x=c(2,4,5,9)). Good luck! – Josh O'Brien Jan 17 '12 at 20:15