All Projects → trinker → Make_Task

trinker / Make_Task

Licence: other
A minimal Example for Scheduling Windows Tasks with R

Programming Languages

r
7636 projects
Batchfile
5799 projects

Make_Task

A Minimal Example for Scheduling Windows Tasks with R

Also see:

Update

Using...

@echo off
R CMD BATCH C:\Users\Tyler\Desktop\Make_Task\task.R

makes strong assumptions about where R is located and if it's on the user's path. As @apwheele points out using the full path name to run a batch file is more reliable.

@echo off
"C:\R\R-3.2.2\bin\x64\R.exe" CMD BATCH C:\Users\Tyler\Desktop\Make_Task\task.R

If the path of your R file has spaces in it, make sure to enclose the path in quotes otherwise the code won't run:

@echo off
"C:\R\R-3.2.2\bin\x64\R.exe" CMD BATCH "C:\Users\Tyler\Desktop\Some Other Path\task.R"
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].