If a command in R is too long, is it possible to write the rest of it to the next line?
For example
tmp = -0.00773 + 1.5657 -0.9391 + 0.4753 - 0.1019 -0.00495
tmp = -0.00773 + 1.5657 -0.9391
+ 0.4753 - 0.1019 -0.00495
will give different results.
Thanks!