persimon_app {npboottprmFBar}R Documentation

Run Shiny Application for bootFbar Performance Simulation

Description

This function launches a 'shiny' application that allows users to run performance simulations for the bootFbar method and other statistical tests. The app provides an interface to set simulation parameters, run simulations, view results, and store them in a 'PostgreSQL' database.

Usage

persimon_app(dbname, datatable, host, port, user, password)

Arguments

dbname

A string specifying the name of the 'PostgreSQL' database to connect to.

datatable

A string specifying the name of the table in the database where results will be stored.

host

A string specifying the host name or IP address of the 'PostgreSQL' server.

port

An integer specifying the port number on which the 'PostgreSQL' server is listening.

user

A string specifying the username for the 'PostgreSQL' database connection.

password

A string specifying the password for the 'PostgreSQL' database connection.

Details

The 'shiny' application provides a user interface for setting simulation parameters, running simulations using the persimon function, and visualizing the results. It allows users to:

The application uses the mmints package for database interactions and citation handling.

Value

A 'shiny' application object.

See Also

persimon for the underlying simulation function.

Examples

if(interactive()){
persimon_app(dbname = "my_database", datatable = "simulation_results",
             host = "localhost", port = 5432,
             user = "username", password = "password")
}


[Package npboottprmFBar version 0.2.0 Index]