I have a very large Term Document Matrix in R with dimensions 81094 * 14177. On trying to convert it to a normal matrix I am getting an error
Error: cannot allocate vector of size 8.6 Gb
The code that I have used is
new_matrix = as.matrix(old_matrix).
Is there a way to handle such situations in R where memory is insufficient?