-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathui.R
28 lines (24 loc) · 1.23 KB
/
ui.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
library(shiny)
fluidPage(theme = "myCSS.css",
headerPanel(title = "", windowTitle = "Régression multiple nominale"),
h2("Régression multiple nominale"),
sidebarLayout(
sidebarPanel(width = 4,
matrixInput("codes", class = "numeric",
value = matrix(c(-1, +1, 0,
1, 1, -2),
dimnames = list(c("feed_NvsP", "feed_AvsNP"),
c("N", "P", "A")),
nrow = 2, byrow = TRUE),
rows = list(names = TRUE),
cols = list(names = TRUE)),
checkboxInput('projectX1', 'note~feed_NvsP'),
checkboxInput('projectX2', 'note~feed_AvsNP'),
verbatimTextOutput("descriptives"),
verbatimTextOutput("mdlSummary")
),
mainPanel(width = 5,
plotlyOutput('mainPlot', height = "600px")
)
)
)