https://github.com/Tychobra/template_shinydashboard
Template for creating a shinydashboard at Tychobra
https://github.com/Tychobra/template_shinydashboard
Last synced: 4 months ago
JSON representation
Template for creating a shinydashboard at Tychobra
- Host: GitHub
- URL: https://github.com/Tychobra/template_shinydashboard
- Owner: Tychobra
- Created: 2017-07-17T15:28:31.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-02-13T15:59:00.000Z (about 5 years ago)
- Last Synced: 2024-08-13T07:15:35.652Z (8 months ago)
- Language: R
- Size: 170 KB
- Stars: 3
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - Tychobra/template_shinydashboard - Template for creating a shinydashboard at Tychobra (R)
README
# template_shinydashboard
Starter template for creating a shinydashboard
### File and Folder Structure
Use deploy.R script to deploy the app
Only files and folders that need to be deployed with the Shiny app go in the "shiny_app/" folder.
##### Project root level folders:
- "data_prep/" - for data preparation. Most projects need data to be prepped from some raw format to a format ready for the app. This folder is most heavily used in the early days of the project as we are exploring the data and cleaning up initial data issues.
- "provided/" - raw data provided by the client goes here. This data is not tracked on GitHub
- "prepped/" - cleaned versions of the data in "provided" goes here. This data is also not tracked on GitHub.
- "docs/" - additional documentation goes here
- "analysis/" - additional analysis e.g. EDA goes here. Also if you are training models that may or may not end up in your Shiny app, do that here.
- You can make other folders as is appropriate for your project
##### "shiny_app/" level folders:- "www/" - contains all front end assets (i.e. css, js, and images)
- "data/" - contains any flat files that need to be deployed with the app
- "R/" - contains all R functions and modules. Files containing modules should end with '_module.R'