-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathui.R
More file actions
30 lines (27 loc) · 771 Bytes
/
Copy pathui.R
File metadata and controls
30 lines (27 loc) · 771 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
library(shiny)
library(PogromcyDanych)
nazwySeriali <- sort(levels(serialeIMDB$serial))
shinyUI(fluidPage(
titlePanel("Tytuł"),
headerPanel("Nagłówek"),
sidebarLayout(
sidebarPanel(
p("Lewy panel boczny") ,
selectInput(inputId = "wybranySerial",
label = "Wybierz serial do analizy",
choices = nazwySeriali,
selected = "Friends"),
checkboxInput(inputId = "liniaTrendu",
label = "Czy zaznaczyć linię trendu",
value = TRUE)
),
mainPanel(
br(), # równa poziom napisu
p("Panel główny"),
uiOutput("przykład")
# ,
# plotOutput("trend"),
# verbatimTextOutput("model")
)
)
))