[R] Working with very large datasets and generating an executable file

Abby Spurdle @purd|e@@ @end|ng |rom gm@||@com
Thu May 7 05:34:55 CEST 2020


> 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



More information about the R-help mailing list