I am trying to create a dataframe using code with the basic structure:
df <- data.frame(A = "a", B = "b", C = "c", D = "d", E = "e")
However once I go over 200 columns the code fails to finish reading, with a result something like this:
#complete code
#+
""
#Error: unexpected string constant in:
#(part of my code here)
#"""
I've rigorously checked my code for typos (which there are none) and no matter what section of the code I delete it starts to work once the number of columns goes under 200.
Any suggestions on how to make a dataframe with more than 200 columns? Thanks in advance!