The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.

Frequently Asked Questions


  1. I want to use sdc_log() on a main.R script which calls several other scripts via source() in the order I need in my analysis. But the contents from the other R scripts are not logged. How can I log the outputs from the subordinated scripts in the same log file?

    First, replace all calls to source() with sdc_log().

    Then, create a file connection:

    file_connection <- file("path/to/my/log", open = "w")

    Specify destination = file_connection in all calls to sdc_log().

    Run sdc_log() on you main.R script.

    Close the file connection via close(file_connection).


This vignette will be extended as users have more questions.

These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.