-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.R
More file actions
33 lines (22 loc) · 785 Bytes
/
server.R
File metadata and controls
33 lines (22 loc) · 785 Bytes
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
29
30
31
32
33
library(shiny)
library(multcomp)
shinyServer(
function(input, output,session) {
#panel 1 Dunnett
source("1D_server.R", local=TRUE,encoding = "utf-8")$value
#panel 2 Shirley-Williams
source("2SW_server.R", local=TRUE,encoding = "utf-8")$value
#panel 3 Steel
source("3S_server.R", local=TRUE,encoding = "utf-8")$value
#panel 4 Steel-Dwass
source("4SD_server.R", local=TRUE,encoding = "utf-8")$value
#panel 5 Tukey
source("5T_server.R", local=TRUE,encoding = "utf-8")$value
#panel 6 Williams
source("6W_server.R", local=TRUE,encoding = "utf-8")$value
##########----------##########----------##########
# observe({
# if (input$close > 0) stopApp() # stop shiny
# })
}
)