Skip to content

Commit aaa9edb

Browse files
committed
update (not sure what :) )
1 parent 455d578 commit aaa9edb

File tree

2 files changed

+26
-20
lines changed

2 files changed

+26
-20
lines changed

shiny_timeseries/server.R

+9-6
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,30 @@
11
library(shiny)
2+
library("linelist2ts")
3+
data(hagelloch.obk)
4+
df <- hagelloch.obk@individuals
25

36
# Define server logic required to draw a histogram
47
shinyServer(function(input, output) {
5-
8+
69
# Expression that generates a histogram. The expression is
710
# wrapped in a call to renderPlot to indicate that:
811
#
912
# 1) It is "reactive" and therefore should re-execute automatically
1013
# when inputs change
1114
# 2) Its output type is a plot
12-
13-
15+
16+
1417
output$distPlot <- renderPlot({
1518
date.min <- as.Date(input$range[1], origin = "1970-01-01")
1619
date.max <- as.Date(input$range[2], origin = "1970-01-01")
17-
20+
1821
if (input$var != "all") sex = input$var
1922
if (input$var == "all") sex = c("male", "female")
20-
23+
2124
if (input$var2 == "days") incidence.title = "Daily"
2225
if (input$var2 == "weeks") incidence.title = "Weekly"
2326
if (input$var2 == "months") incidence.title = "Monthly"
24-
27+
2528
# draw the histogram with the specified number of bins
2629
hist(subset(df, (date.min<=ERU & ERU<=date.max & SEX %in% sex))$ERU, breaks = input$var2, start.on.monday=FALSE, col = 'skyblue', border = 'white',
2730
xlab=paste(incidence.title,"incidence",sep=" "), main="")

shiny_timeseries/ui.R

+17-14
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,43 @@
11
library(shiny)
2+
library("linelist2ts")
3+
data(hagelloch.obk)
4+
df <- hagelloch.obk@individuals
25

36
# Define UI for application that draws a histogram
47
shinyUI(fluidPage(
5-
8+
69
# Application title
710
titlePanel("Interactive time series"),
8-
11+
912
# Sidebar with a slider input for the number of bins
1013
sidebarLayout(
1114
sidebarPanel(
12-
13-
selectInput("var",
15+
16+
selectInput("var",
1417
label = "Sex:",
1518
choices = c("all", "male", "female"),
1619
selected = "all"),
17-
18-
selectInput("var2",
20+
21+
selectInput("var2",
1922
label = "Break by:",
2023
choices = c("days", "weeks", "months"),
2124
selected = "weeks"),
22-
25+
2326
sliderInput("range",
2427
"Dates:",
2528
min = as.numeric(min(df$ERU)),
2629
max = as.numeric(max(df$ERU)),
2730
#format = '_locale.date.format', #'M/d/yyyy h:mm a', animate=TRUE,
2831
#dateInput("ana", "Choose a date:", value = min(df$ERU)),
2932
value = c(as.numeric(min(df$ERU)),as.numeric(max(df$ERU)))),
30-
33+
3134
dateInput("ana", "Choose a date:", value = min(df$ERU))
32-
35+
3336
),
34-
37+
3538
# Show a plot of the generated distribution
3639
mainPanel(
37-
40+
3841
singleton(tags$head(HTML(
3942
'
4043
<script type="text/javascript">
@@ -48,14 +51,14 @@ shinyUI(fluidPage(
4851
var ref_date = new Date("2014-07-01");
4952
// each slider step is 1 day, translating to 24 * 3600 * 1000 milliseconds
5053
var slider_date = new Date(ref_date.getTime() + value * 24 * 3600 * 1000);
51-
return [slider_date.getUTCFullYear(),
52-
slider_date.getUTCMonth() + 1,
54+
return [slider_date.getUTCFullYear(),
55+
slider_date.getUTCMonth() + 1,
5356
slider_date.getUTCDate()].join("-");
5457
}
5558
})
5659
</script>
5760
'))),
58-
61+
5962
plotOutput("distPlot")
6063
)
6164
)

0 commit comments

Comments
 (0)