tableau_extension: Modify a Plumber router to function as a Tableau Analytics...

Description Usage Arguments Value Examples

View source: R/tableau_extension.R

Description

Most of the time, you won't call this function directly. Instead, you'll place it at the end of a Plumber router, under a #* @plumber annotation, with no trailing parentheses or arguments. This tells Plumber to use the function to modify the router object.

Usage

1
2
3

Arguments

pr

A plumber router

Value

A modified plumber router that functions as a Tableau Analytics Extension

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
## Not run: 
library(plumber)
library(plumbertableau)

#* Capitalize incoming text
#* @post /capitalize
function(req, res) {
  dat <- req$body$data
  toupper(dat)
}

#* @plumber
tableau_extension

## End(Not run)

plumbertableau documentation built on Aug. 6, 2021, 9:05 a.m.