Skip to content

Commit

Permalink
update: script in order to have app working on shinyapps.io
Browse files Browse the repository at this point in the history
  • Loading branch information
tin900 committed Apr 10, 2024
1 parent 550ef10 commit 92c12cf
Show file tree
Hide file tree
Showing 8 changed files with 2,998 additions and 133 deletions.
5 changes: 5 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
^renv$
^renv\.lock$
^LICENSE\.md$
^\.github$
^.*\.Rproj$
^\.Rproj\.user$
^build\.R
^R/app\.R$
^R/global\.R$

2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Authors@R:
Description: Provides a user-friendly R Shiny app for performing various statistical tests on datasets.
It allows users to upload data in numerous formats and perform statistical analyses.
The app dynamically adapts its options based on the selected columns and supports both single and multiple column comparisons.
The app's user interface (UI) is designed to streamline the process of selecting datasets, columns, and test options,
The app's user interface is designed to streamline the process of selecting datasets, columns, and test options,
making it easy for users to explore and interpret their data. The underlying functions for statistical tests are well-organized and can be used independently within other R scripts.
URL: https://github.com/vusaverse/vvdoctor,
https://vusaverse.github.io/vvdoctor/
Expand Down
18 changes: 18 additions & 0 deletions R/app.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# app.R

# Load required packages
library(shiny)

# Source UI and server functions
source("R/ui.R")
source("R/global.R")
source("R/server.R")
# source("R/helperfunctions.R")

# Define run_vvdoctor() function
run_vvdoctor <- function() {
shiny::shinyApp(ui = app_ui, server = app_server)
}

# Run the app
run_vvdoctor()
Loading

0 comments on commit 92c12cf

Please sign in to comment.