水管工:将您的R代码转换为Web API 源码
plumber Plumber允许您仅通过用特殊注释修饰现有R源代码来创建Web API。 看一个例子。 # plumber.R # * Echo back the input # * @param msg The message to echo # * @get /echo function ( msg = " " ) { list ( msg = paste0( " The message is: ' " , msg , " ' " )) } # * Plot a histogram # * @serializer png # * @get /plot function () {
用户评论