Skip to contents

This Shiny module provides a user interface for entering speaker data, triggering a data entry prompt followed by a report output. It can be used to collect speaker information for VOX Analysis.

Usage

mod_speaker_data_entry_server(id)

mod_speaker_data_entry_ui(id)

Arguments

id

The namespace `id`, used to uniquely identify Shiny modules and UI components within the VOX Analysis package.

Examples

if (interactive()) {
  # Basic usage example
  ui <- page(
    useShinyjs(),
    mod_speaker_data_entry_ui("speaker_entry")
  )

  server <- function(input, output, session) {
    mod_speaker_data_entry_server("speaker_entry")
  }

  shinyApp(ui, server)
}