app_ui {GenEst} | R Documentation |
Create the GenEst User Interface HTML
Description
This suite of functions in app_ui.R
create the HTML code
underlying the GenEst user interface (UI). See the "GenEst Graphic User
Interface" vignette for a more complete detailing of the codebase underlying
the GenEst UI.
GenEstUI
: whole application. Calls
dataInputPanel
, analysisPanel
, and helpPanel
.
Usage
GenEstUI(appType = "base")
dataInputPanel()
dataInputSidebar()
loadedDataPanel()
analysisPanel()
GeneralInputsPanel()
GeneralInputSidebar()
SEPanel()
SESidebar()
SEMainPanel()
CPPanel()
CPSidebar()
CPMainPanel()
MPanel()
MSidebar()
MMainPanel()
gPanel()
gSidebar()
gMainPanel()
helpPanel(appType = "base")
gettingStartedPanel()
downloadsPanel()
aboutPanel()
disclaimersPanel(appType = "base")
Arguments
appType |
Toggle control for the app, |
Details
Currently there are few differences between the local and deployed
versions of GenEst, and the appType
toggle is only included as an
argument for functions that can produce different versions of the HTML.
At this point, the only content that is different is the disclaimer text
on the Help panel.
Value
Each function returns a string of HTML code, either as a
"shiny.tag.list"
object (in the case of GenEstUI
) or a
"shiny.tag"
object (in the case of the other functions).
GenEstUI
: Full GenEst user interface.