Skip to content
This repository was archived by the owner on Dec 29, 2019. It is now read-only.

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

The basics

  1. Start an R session in this directory (01-basics)

    • RStudio users, open the *.Rproj file in this directory
  2. Build the project:

    remake::make()
  3. Observe the output

  4. Fetch the ragout:

    remake::fetch("ragout")
  5. Build the project with remake::make() again. How has the output changed?

  6. Fetch the ragout again. Has it changed?

  7. Locate the hidden .remake directory in this directory

    • Don't look inside, you have been warned
      • No harm will be done to your computer if you look anyway
  8. Delete it entirely:

    unlink(".remake", recursive = TRUE)
  9. Build the project again. Why are all targets rebuilt?

  10. Fetch the ragout again. Has it changed?