R is designed for advanced statistical computations. Apart from ready-to-use implementations of state-of-the-art algorithms, R’s other great assets are vector and matrix computations. R transformations complement Python and SQL transformations where computations or other operations are too difficult. Common data operations like joining, sorting, and grouping, however, are still easier and faster to do in SQL Transformations.
The R script is running in an isolated Docker environment. The current R version is R 4.0.5. The R version is updated regularly, few weeks after the official release. The update is always announced on the status page.
When we update the R version, we offer — for a limited time — the option to switch to the previous version. You can
switch the version in the transformation detail by clicking on the Change Backend
label:
This feature is intended to help you postpone the update to a more convenient time for you in case there are any problems with the new version. You should update the transformation code to the new version soon, as the old version is considered unsupported.
If the R
label is not displayed, there is no previous version offered. It is still possible to change the version
via the API though.
The Docker container running the R transformation has 16GB of allocated memory and the maximum running time is 6 hours. The container is also limited to the equivalent of 2 Intel Broadwell 2.3 GHz processors.
The R script itself will be compiled to /data/script.R
. To access input and output tables, use relative
(in/tables/file.csv
, out/tables/file.csv
), or absolute (/data/in/tables/file.csv
, /data/out/tables/file.csv
) paths.
To access downloaded files, use the in/user/tag
or /data/in/user/tag
path. If you want to dig really deep, have a look
at the full Common Interface Specification. Temporary files can
be written to the /tmp/
folder. Do not use the /data/
folder for those files you do not wish to exchange with Keboola.
The R script to be run within our environment must meet the following requirements:
The R transformation can use any package available on
CRAN. In order for a package and
its dependencies to be automatically loaded and installed, list its name in the package section. Using library()
for loading is not necessary then.
The latest versions of packages are always installed. Some packages are already installed in the environment
(see list). The listed packages are installed with
their dependencies, therefore to get an authoritative list of installed packages use the installed.packages()
function.
These pre-installed packages do not need to be listed in the transformation. It does no harm if you list them, but the transformation and sandbox start is slower.
In case your code relies on a specific package version, you can override the installed version by calling, e. g.:
If you need to load a package that is on Github, but not on CRAN, then you can use the devtools::install_github method
Tables from Storage are imported to the R script from CSV files. The CSV files can be read by standard R functions.
Generally, the table can be read with default R settings. In case R gets confused, use the exact format
specification sep=",", quote="\""
. For example:
Do not use the row index in the output table (row.names=FALSE
). If you are using the
readr package, you can also use the write_csv
function
which doesn’t write row names.
The row index produces a new unnamed column in the CSV file which cannot be imported to Storage. If the row names contain valuable data and you need to keep them, you have to convert them to a separate column first.
We have set up our environment to be a little zealous; all warnings are converted to errors and they cause the
transformation to be unsuccessful. If you have a piece of code in your transformation which may emit warnings
and you really want to ignore them, wrap the code in a tryCatch
call:
We recommend that you create an RStudio sandbox with the same input mapping your transformation will use. This is the fastest way to develop your transformation code.
Tip: Limit the number of rows you read in from the CSV files:
This will help you catch annoying issues without having to process all data.
You can also develop and debug R transformations on your local machine. To do so, install R, preferably the same version as us. It is also helpful to use an IDE, such as RStudio.
To simulate the input and output mapping, all you need to do is create the right directories with the right files. The following image shows the directory structure:
The script itself is expected to be in the data
directory; its name is arbitrary. It is possible to use relative directories,
so that you can move the script to a Keboola transformation with no changes. To develop an R transformation which takes
a sample CSV file locally, take the following steps:
in/tables
subdirectory of the working directory.in/user
subdirectory of the working directory, and make sure
that their name has no extension.out/tables
subdirectory.Use this sample script:
A complete example of the above is attached below in data.zip.
Download it and test the script in your local R installation. The result.csv
output file will be created.
This script can be used in your transformations without any modifications.
All you need to do is
source
(as expected by the R script),result.csv
(produced by the R script) to a new table in your Storage,It is possible to output informational and debug messages from the R script simply by printing them out. The following R script:
produces the following events in the transformation job:
The app$logInfo
and app$logError
functions are internally available; they can be useful if you need to know the precise
server time of when an event occurred. The standard event timestamp in job events is the time when the event was received
converted to the local time zone.
The above steps are usually sufficient for daily development and debugging of moderately complex R transformations, although they do not reproduce the transformation execution environment exactly. To create a development environment with the exact same configuration as the transformation environment, use our Docker image.
There are more in-depth examples dealing with