How to set max ppsize in R?
I found a similar problem and that the actual issue was related to expansion of formulas into a model matrix. If you can get the data into that format without using formulas and then use the overload in the svm command (like many other models) that takes an X and y value instead, your probably may go away like mine did.
My way to fix a problem similar to yours:
- in the command-line, cd into the location of R progranm (e.g. C:\Program Files\R\R-3.1.3\bin\x64)
- in the command-line, Rgui.exe --max-ppsize=500000
- in the new open Rgui.exe, options("expressions"=20000)
Do the coding... NO original Error for me!!