-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserver.r
80 lines (49 loc) · 2.95 KB
/
server.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
shinyServer(function(input, output, session) {
##### > Message menu ###############################################################
output$messageMenu <- renderMenu({
dropdownMenu(
icon = icon(name = "info-circle", class = "fa-lg"),
headerText = strong("App Information"),
messageItem(
from = "GitHub Repository",
message = "Documentation, Source",
icon = icon(name = "github", class = "fa"),
href = "https://github.com/carlostorrescubila/VisualizeR"
),
messageItem(
from = "Issues",
message = "Report Issues",
icon = icon("exclamation-circle"),
href = "https://github.com/carlostorrescubila/VisualizeR/issues"
)
)
})
##### > Home #######################################################################
callModule(serverChangeTheme, "moduleChangeTheme")
callModule(home_server, "home_body")
##### > Upload data ################################################################
##### >> txt ###################################################################
callModule(upload_txt_server, "upload_txt")
##### >> csv ###################################################################
callModule(upload_csv_server, "upload_csv")
##### >> excel #################################################################
callModule(upload_excel_server, "upload_excel")
##### >> SPSS #################################################################
callModule(upload_spss_server, "upload_spss")
##### > Edit data ##################################################################
callModule(edit_data_server, "edit_data_body")
##### > R base #####################################################################
##### >> Bar chart #############################################################
callModule(r_base_bar_chart_server, "r_base_bar_chart_body")
##### >> Box plot ##############################################################
callModule(r_base_box_plot_server, "r_base_box_plot_body")
##### >> Histogram #############################################################
callModule(r_base_histogram_server, "r_base_histogram_body")
##### >> Scatter plot ##########################################################
callModule(r_base_scatter_plot_server, "r_base_scatter_plot_body")
##### > Lattice ####################################################################
##### >> Bar chart #############################################################
callModule(lattice_bar_chart_server, "lattice_bar_chart_body")
##### >> Scatter plot ##########################################################
callModule(lattice_scatter_plot_server, "lattice_scatter_plot_body")
})