> The second question is, is there a way I can develop an R model and turn it
> into an executable program that can work on any OS?

------myrscript.c--------
int main (int argc, char* argv [])
{   system ("Rscript myrscript.r");
    return 0;
}
-------------------------

command line > gcc -o myrscript.exe myrscript.c
command line > myrscript.exe

______________________________________________
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to