News

This is inspired by this post by Simon Couch on how to run R scripts on a schedule with GitHub Actions, giving an alternative with Cloud Build. The work flow looks to: Run your R code, save the object ...
from pathlib import Path from pytask import mark @mark.r(script=Path("script.r")) def task_run_r_script (produces: Path = Path ("out.rds")): pass If you are wondering why the function body is empty, ...
If you’re an R programmer hoping to try GitHub Copilot, you’ll need to use Microsoft’s Visual Studio Code. Here’s how to set up and use VS Code for R.