how to use taskscheduleR with Rstudio Project?

  1. Create a "Trial.proj" via RStudio
  2. Create "A.R"
setwd(rstudioapi::getActiveProject())
rm(list = ls())
x <- 1:5
  1. Create "B.R"
source("A.R", chdir = TRUE)
y <- x^2
write(y, "D:/sample_nums.txt")

I would like to create task using taskscheduler_create {taskscheduleR}, i am wondering how???

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.