A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/insightsengineering/teal/ below:

insightsengineering/teal: Exploratory Web Apps for Analyzing Clinical Trial Data

teal: Interactive Exploratory Data Analysis with Shiny Web-Applications

teal is a shiny-based interactive exploration framework for analyzing data. teal applications require app developers to specify:

A lot of the functionality of the teal framework derives from the following packages:

Dive deeper into teal with our comprehensive video guide. Please click the image below to start learning:

Alternatively, you might also use the development version.

# install.packages("pak")
pak::pak("insightsengineering/teal")
library(teal)

app <- init(
  data = teal_data(iris = iris),
  modules = list(
    module(
      label = "iris histogram",
      server = function(input, output, session, data) {
        updateSelectInput(session = session,
                          inputId =  "var",
                          choices = names(data()[["iris"]])[1:4])

        output$hist <- renderPlot({
          req(input$var)
          hist(x = data()[["iris"]][[input$var]])
        })
      },
      ui = function(id) {
        ns <- NS(id)
        list(
          selectInput(inputId = ns("var"),
                      label =  "Column name",
                      choices = NULL),
          plotOutput(outputId = ns("hist"))
        )
      }
    )
  )
)

shinyApp(app$ui, app$server)

Please see teal.gallery and TLG Catalog to see examples of teal apps.

Please start with the "Technical Blueprint" article, "Getting Started" article, and then other package vignettes for more detailed guide.

If you encounter a bug or have a feature request, please file an issue. For questions, discussions, and updates, use the teal channel in the pharmaverse slack workspace.

This package is a result of a joint efforts by many developers and stakeholders. We would like to thank everyone who contributed so far!


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4