Displaying 1 result from an estimated 1 matches for "r_parse1lin".
Did you mean:
r_parse1line
2008 Sep 03
8
suggestion of new API function for embedded programming.
...re exported to the Rembedded.h API we could
do something like the following:
R_Expr = R_Parse1Buffer(&R_ConsoleIob, 0, &status);
if (PARSE_OK==status) {
...
value = eval(R_CurrentExpr, rho);
...
}
or possibly simplifying the interface to take the CMDL string:
R_Expr = R_Parse1Line("t.test(x,conf.level=(1-p))$conf.int[2]", &status);
I think this would be a useful addition to the embedding interface, and
hopefully not difficult to incorporate by someone more experienced with the
internals than I currently am. I took a few hours to look into adding this
interfa...