-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathui.R
85 lines (81 loc) · 2.21 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
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
82
83
84
85
bs4Dash::bs4DashPage(
bs4Dash::dashboardHeader(),
bs4Dash::bs4DashSidebar(
skin = "#ffffff",
minified = FALSE,
shiny::column(
12,
align = "center",
shiny::sliderInput(
inputId = "precomax",
label = "Preço máximo",
min = 0,
max = 60000,
value = 25000
),
shiny::sliderInput(
inputId = "precomax",
label = "Preço máximo",
min = 0,
max = 60000,
value = 25000
),
h3("Suas prioridades"),
shiny::sliderInput(
inputId = "aparencia",
label = "Aparência",
min = 0,
max = 1,
value = 0.5,
step = 0.1
),
shiny::sliderInput(
inputId = "custobeneficio",
label = "Custo Beneficio",
min = 0,
max = 1,
value = 0.5,
step = 0.1
),
shiny::sliderInput(
inputId = "desempenho",
label = "Desempenho",
min = 0,
max = 1,
value = 0.5,
step = 0.1
),
shiny::sliderInput(
inputId = "estabilidade",
label = "Estabilidade",
min = 0,
max = 1,
value = 0.5,
step = 0.1
),
actionButton(
inputId = "calc",
label = "",
icon = icon("gear")
)
)
),
bs4Dash::bs4DashBody(
shiny::fluidRow(
bs4Dash::bs4Card(
title = "Rank",
width = 3,
shiny::column(
12,
align = "center",
shiny::tableOutput("table")
)
),
bs4Dash::bs4Card(
title = "Plot",
width = 9,
shiny::plotOutput("plot", height = "800px")
)
)
)
)