79821809

Date: 2025-11-17 00:03:10
Score: 2
Natty:
Report link

Because I needed to use concatenations of ~300 variables, I finally found out that simply putting new lines among the variables worked and avoided the error:

c(var1, var2, .... var100, var101, var102, ... var 200) # This will not work

c(var1, var2, .... var100,

var101, var102, ... var 200) # This will work

It is unclear to me why this happens, but I hope this empirical finding helps someone. It took me a long time to find a solution.

Reasons:
  • Blacklisted phrase (0.5): I need
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Ivan