Skip to content

cran/teal.transform

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

teal.transform

CRAN Version Total Downloads Last Month Downloads Last Week Downloads

Check 🛠 Docs 📚 Code Coverage 📔

GitHub forks GitHub repo stars

GitHub commit activity GitHub contributors GitHub last commit GitHub pull requests GitHub repo size GitHub language count Project Status: Active – The project has reached a stable, usable state and is being actively developed. Current Version Open Issues

This package contains functions and shiny modules for extracting and merging data within the teal framework.

Installation

install.packages('teal.transform')

Alternatively, you might want to use the development version.

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

Usage

To understand how to use this package, please refer to the Getting Started article, which provides multiple examples of code implementation.

Below is a small example usage:

library(teal.transform)
ADSL <- teal.data::rADSL

adsl_extract <- data_extract_spec(
  dataname = "ADSL",
  filter = filter_spec(vars = "SEX", choices = c("F", "M")),
  select = select_spec(choices = c("BMRKR1", "AGE"))
)

ui <- data_extract_ui(
  id = "adsl_ui",
  label = "ADSL UI",
  data_extract_spec = adsl_extract
)

library(shiny)
ui <- fluidPage(ui)
server <- function(input, output, session) {}
shinyApp(ui, server)

Showcase

Getting help

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

About

❗ This is a read-only mirror of the CRAN R package repository. teal.transform — Functions for Extracting and Merging Data in the 'teal' Framework. Homepage: https://insightsengineering.github.io/teal.transform/https://github.com/insightsengineering/teal.transform/ Report bugs for this package: https://g ...

Resources

Stars

Watchers

Forks

Packages

 
 
 

Contributors