sugitora commited on
Commit
ff57627
·
verified ·
1 Parent(s): 53b9ac3

Update app.R

Browse files
Files changed (1) hide show
  1. app.R +3 -2
app.R CHANGED
@@ -150,8 +150,8 @@ ui <- fluidPage(
150
  dateRangeInput(
151
  "date_range",
152
  "対象期間",
153
- start = min(DATA$contract$`案件予定日(開始)`, na.rm = TRUE),
154
- end = min(DATA$contract$`案件予定日(開始)`, na.rm = TRUE) + 7,
155
  min = min(DATA$contract$`案件予定日(開始)`, na.rm = TRUE),
156
  max = max(DATA$contract$`案件予定日(終了)`, na.rm = TRUE),
157
  format = "yyyy/mm/dd",
@@ -486,3 +486,4 @@ server <- function(input, output, session) {
486
  }
487
 
488
  shinyApp(ui, server)
 
 
150
  dateRangeInput(
151
  "date_range",
152
  "対象期間",
153
+ start = as.Date("2024-04-01"),
154
+ end = as.Date("2026-03-31"),
155
  min = min(DATA$contract$`案件予定日(開始)`, na.rm = TRUE),
156
  max = max(DATA$contract$`案件予定日(終了)`, na.rm = TRUE),
157
  format = "yyyy/mm/dd",
 
486
  }
487
 
488
  shinyApp(ui, server)
489
+