R/plumber에 인수가 있는 API
인수가 없는 API
wtapi.R
library(plumber)
library(stringr)
library(lubridate)
x <- read.csv(file = "water-treatment.data", header = FALSE, na.strings = "?")
x$V1 <- dmy(str_sub(x$V1, start = 3))
#* @get /wt
function() {
return(x)
}
> pr("wtapi.R") %>% pr_run(port=8000)
Running plumber API at http://127.0.0.1:8000
Argument of class Date cannot be used to set default value in OpenAPI Specifications.
Argument of class Date cannot be used to set default value in OpenAPI Specifications.
Running swagger Docs at http://127.0.0.1:8000/__docs__/
인수가 있는 API
wtapi.R
library(plumber)
library(stringr)
library(lubridate)
library(dplyr)
x <- read.csv(file = "water-treatment.data", header = FALSE, na.strings = "?")
x$V1 <- dmy(str_sub(x$V1, start = 3))
#* @get /wt
function(start=x$V1[1], end=x$V1[dim(x)[1]]) {
x %>% filter(V1 >= start & V1 <= end) %>% return()
}
> pr("wtapi.R") %>% pr_run(port=8000)
Running plumber API at http://127.0.0.1:8000
Argument of class Date cannot be used to set default value in OpenAPI Specifications.
Argument of class Date cannot be used to set default value in OpenAPI Specifications.
Running swagger Docs at http://127.0.0.1:8000/__docs__/
Reference
이 문제에 관하여(R/plumber에 인수가 있는 API), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/yono2844/items/c47fe7d64b3be1dbbadb텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)