-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathui.R
More file actions
executable file
·81 lines (70 loc) · 2.69 KB
/
ui.R
File metadata and controls
executable file
·81 lines (70 loc) · 2.69 KB
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
81
# This is the user-interface definition of a Shiny web application.
# You can find out more about building applications with Shiny here:
#
# http://shiny.rstudio.com
#
library(shinydashboard)
library(DT)
library(markdown)
source("Tarea1/T1_server.R")
source("Tarea1/T1_ui.R")
source("Tarea2/T2_server.R")
source("Tarea2/T2_ui.R")
source("Tarea3/T3_server.R")
source("Tarea3/T3_ui.R")
ui <- dashboardPage(
dashboardHeader(titleWidth = 250, title = "ITAM",
dropdownMenu(type="messages",
messageItem(
from="ME",
message = "Entrega Martes 13/12/16"),
messageItem(
from="Question",
message = "mkba85_@gmail.com",
icon=icon("question"))
),
dropdownMenu(type="task",badgeStatus = "success",
taskItem(value=100, color="green", "Tarea1"),
taskItem(value=100, color="green", "Tarea2"),
taskItem(value=100, color="green", "Tarea3")
)
),
dashboardSidebar(
width = 250,
sidebarMenu(
menuItem("Home", tabName = "home", icon = icon("home")),
menuItem("Tareas", tabName = "dashboard", icon = icon("line-chart"),
menuSubItem("Tarea 1 Función inversa",icon = icon("folder-open"), tabName = "subMenu1"),
menuSubItem("Tarea 2 Integración Numérica",icon = icon("folder-open"), tabName = "subMenu2"),
menuSubItem("Tarea 4,5 y 6 Regresión",icon = icon("folder-open"), tabName = "subMenu3")
)
)
),
dashboardBody(
tabItems(
tabItem(tabName = 'home',
h2('Estadística Computacional'),
h3("Otoño 2016"),
h4("Maestría en Ciencias de Datos"),
h4("Mónica Patricia Ballesteros Chávez | 124960"),
h4("Profesor: Mauricio García Tec"),
fluidRow(
valueBox(paste(100, "%"), "Progress", icon=icon("list"))
)
),
tabItem(tabName = 'subMenu1',
h2('Simulación de variables aleatorias - Método de la Función Inversa'),
T1_ui("T1_server")
),
tabItem(tabName = 'subMenu2',
h2('Integración Numérica usando Montecarlo y Trapecio'),
T2_ui("T2_server")
),
tabItem(tabName = 'subMenu3',
h2('Regresion Bayesiana'),
h3('Ballesteros Mónica / Cerón Fabiola'),
T3_ui("T3_server")
)
)
)
)