Putting Loop output in Matrix

Hello, I have the following problem.

I have a large matrix called cleantable7. Now I am running the following for loop:

#Loop with phonetic
for (row in 1:nrow(cleantable7))
{
codephon = phonetic(cleantable7[row,], method = c("soundex"), useBytes = FALSE)
codephon2 = codephon[!duplicated(codephon)]
print(codephon2)
}

Now I want all of the output generated from print(codephon2) to be filled in a matrix.
Any ideas?

I would define a list output <- list() and inside the loop output[[row]] <- codephon2 and then after the loop out_matrix <- do.call(rbind, output)

Thank you, but this output matrix has not the same dimension as the one from cleantable. Now there is no structure with rows and columns anymore as it was in cleantable7. Any idea how I will get same dimension?

Hi!

To help us help you, could you please prepare a reproducible example (reprex) illustrating your issue? Please have a look at this guide, to see how to create one:

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.