这就是我的代码的样子
library(plumber)
data(mtcars)
test=mtcars
#' @get /graph
#' @png
makePlot <- function(){
par(mfrow=c(2,1))
hist(test$mpg)
hist(test$wt)
}
r <- plumb("plum_api.R")
r$run(port=8000)
但在输出中我只看到一张图。