Hi all --- I am attempting to use rcall, and wish to begin by bringing vectors/variables from Stata to R. My vector X is also a matrix X. When I use the code below, to send R my variable X, I get the error "too many numeric literals".
If instead I use the code below, to send R my matrix X, I get the error "Y not found". Though occasionally I'm pretty sure I've gotten the numeric literals error for this matrix attempt, also. And in neither case does it help if I replace = with <-.
Am I using this command horribly wrong? Missing something obvious? Thanks in advance!
Code:
rcall: Y = st.var(X)
Code:
rcall: Y = st.matrix(X)
Comment