Does anyone know if there\'s a character limit to what can be put into eval(parse()) ?
eval(parse())
I have a very long character string I am putting into eval parse, an
The limit for parse() is 4095 bytes when reading from the console.
parse()
Referring to the manual at https://stat.ethz.ch/R-manual/R-devel/library/base/html/parse.html
The line-length limit is 4095 bytes when reading from the console (which may impose a lower limit: see ‘An Introduction to R’).