Two main functions in shinypivottabler
:
shinypivottablerUI
, the UI part of the module in shiny with at least the id argumentshinypivottabler
the SERVER part of the module in shiny, with at least the data argument. This function must be used with callModule
functionBy default, shinypivottabler
initialize the pivot table inferface with :
max_n_pivot_cols = 100
unique values# ui
ui = shiny::fluidPage(
shinypivottablerUI(id = "id")
)
# server
server = function(input, output, session) {
shiny::callModule(module = shinypivottabler,
id = "id",
data = data)
}
# more info in documentation :
?shinypivottabler
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.