-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathui.R
33 lines (28 loc) · 1.26 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
library(shiny)
shinyUI(fluidPage(
includeCSS("D:\\RCoursera\\r-s-l\\www\\rsl.css"),
titlePanel("R - Tvs"),
sidebarLayout(
sidebarPanel(
p("This dashboards muestra los tvs en la sección"),
p("La data se obtuvo de esta sección: \n",
a("R TV todas",
href = "http://www")),
img(src="", height = 60, width = 120),
br(),
br(),
p("Se consideraron los siguientes atributos: marca, producto y precio")
),
mainPanel(
tabsetPanel(
tabPanel("Por marca", h4("Summary"),
verbatimTextOutput("summary"),
plotOutput("plot1"),
tabPanel("Por rango de precio", plotOutput("plot2"),
dataTableOutput('mytable')),
tabPanel("Dif. descuento %", plotOutput("plot3"))
)
)
)
))
)