文件名称:水管工:将您的R代码转换为Web API
文件大小:3.38MB
文件格式:ZIP
更新时间:2024-02-20 07:30:59
api r api-server plumber APIR
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 () { rand <- rnorm( 100 ) hist( rand ) } # * Return the sum of two numbers # * @param a The first number to add # * @param b The second number to add # * @post /sum function ( a , b ) { as.numeric( a