R client library for accessing the Algorithmia API
First make a client object:
client <- getAlgorithmiaClient("ALGORITHMIA_API_KEY")
Then get the algorithm object:
algorithm <- client$algo("algo://AUTHOR/ALGORITHM_NAME/VERSION")
Call pipe passing in the input to the algorithm:
response <- algorithm$pipe(input)
There are two fields in the result. The meta data (which has timing data) and the result.
result <- response$result
Version
field in the DESCRIPTION file has had its minor release
version (y in x.y.z incremented from the previously released version,
and that the patch version (z in x.y.z) is set to 0
.test:check_as_cran
CI stage inside
a Docker container with the image for that stagetar.gz
file that was created from the
build>