Results for "existing"

Tags

  • plumber:An R package that converts your existing R code to a web API

    plumber allows you to create a REST API by merely decorating your existing R source code with special comments. Take a look at an example. # plumber.R #* Echo back the input #* @param msg The message to echo #* @get /echo function(msg=""){ list(msg = paste0("The message is: '", msg, "'"...

    Tags: plumber, R, package, converts, existing, code, web, API

    1872 days ago