sd_dashboard {surveydown}R Documentation

Launch Survey Dashboard

Description

This function creates a comprehensive dashboard for survey data analysis with two main tabs:

Usage

sd_dashboard(gssencmode = "auto")

Arguments

gssencmode

Character string. The GSS encryption mode for the database connection. Defaults to "auto". Options are:

  • "auto": Tries "prefer" first, then falls back to "disable" if GSSAPI negotiation fails

  • "prefer": Uses GSSAPI encryption if available, plain connection otherwise

  • "disable": Disables GSSAPI encryption entirely Set to "disable" if you're having connection issues on a secure connection like a VPN.

Details

Opens an interactive dashboard to view and analyze survey responses using a Shiny dashboard interface.

The dashboard offers the following features:

Value

Launches a Shiny application with the survey dashboard. The function does not return a value; it is called for its side effects of opening the dashboard interface.

Examples

## Not run: 
# Launch the survey dashboard with default settings
sd_dashboard()

# Launch with disabled GSS encryption (for VPN connections)
sd_dashboard(gssencmode = "disable")

## End(Not run)


[Package surveydown version 0.12.6 Index]