-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.Rhistory
512 lines (512 loc) · 11.5 KB
/
.Rhistory
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
# Ensure that input variables are not empty before accessing them
if (!is.null(input$destination) && !is.null(input$dates) && !is.null(input$budget) && !is.null(input$activities)) {
# Example: Update map with destination
output$map <- renderLeaflet({
leaflet() %>%
addTiles() %>%
setView(lng = -74.0060, lat = 40.7128, zoom = 10) # Coordinates for New York
})
# Example: Display itinerary
output$itinerary <- renderTable({
activities <- unlist(strsplit(input$activities, ","))
data.frame(
Day = 1:length(activities),
Activity = activities
)
})
# Example: Display summary
output$summary <- renderPrint({
cat("Destination:", input$destination, "\n")
cat("Travel Dates:", input$dates[1], "to", input$dates[2], "\n")
cat("Budget:", input$budget, "\n")
cat("Activities:", input$activities, "\n")
})
}
})
}
# Run the application
shinyApp(ui = ui, server = server)
library(shiny)
library(stringdist)
# Predefined category keywords
keywords <- list(
Necessities = c("food", "eat", "rest", "lunch", "dinner", "breakfast", "sleep", "shopping"),
Leisure = c("museum", "sightseeing", "entertainment", "concert", "sports", "adventure"),
Transport = c("flight", "train", "car", "bus", "travel", "drive", "ride")
)
# Matching logic
categorize_activity <- function(activity) {
scores <- sapply(keywords, function(terms) {
min(stringdist::stringdist(activity, terms, method = "jw"))
})
category <- names(which.min(scores))
return(category)
}
# Shiny App
ui <- fluidPage(
titlePanel("Dynamic Activity Categorizer"),
sidebarLayout(
sidebarPanel(
textInput("activity", "Enter Activity:", placeholder = "e.g., lunch, museum visit, flight"),
actionButton("categorize", "Categorize Activity")
),
mainPanel(
textOutput("result")
)
)
)
server <- function(input, output, session) {
result <- eventReactive(input$categorize, {
activity <- tolower(input$activity) # Convert to lowercase
if (activity == "") return("Please enter an activity.")
category <- categorize_activity(activity)
paste("The activity:", input$activity, "is categorized as:", category)
})
output$result <- renderText({
result()
})
}
shinyApp(ui, server)
installed.packages()
library(shiny)
library(stringdist)
# Predefined category keywords
keywords <- list(
Necessities = c("food", "eat", "rest", "lunch", "dinner", "breakfast", "sleep", "shopping"),
Leisure = c("museum", "sightseeing", "entertainment", "concert", "sports", "adventure"),
Transport = c("flight", "train", "car", "bus", "travel", "drive", "ride")
)
# Matching logic
categorize_activity <- function(activity) {
scores <- sapply(keywords, function(terms) {
min(stringdist::stringdist(activity, terms, method = "jw"))
})
category <- names(which.min(scores))
return(category)
}
# Shiny App
ui <- fluidPage(
titlePanel("Dynamic Activity Categorizer"),
sidebarLayout(
sidebarPanel(
textInput("activity", "Enter Activity:", placeholder = "e.g., lunch, museum visit, flight"),
actionButton("categorize", "Categorize Activity")
),
mainPanel(
textOutput("result")
)
)
)
server <- function(input, output, session) {
result <- eventReactive(input$categorize, {
activity <- tolower(input$activity) # Convert to lowercase
if (activity == "") return("Please enter an activity.")
category <- categorize_activity(activity)
paste("The activity:", input$activity, "is categorized as:", category)
})
output$result <- renderText({
result()
})
}
shinyApp(ui, server)
library(shiny)
ui <- navbarPage(
"My Application",
tabPanel("Page 1",
sidebarLayout(
sidebarPanel(
h3("Sidebar Content for Page 1")
),
mainPanel(
h3("Main Content for Page 1")
)
)
),
tabPanel("Page 2",
sidebarLayout(
sidebarPanel(
h3("Sidebar Content for Page 2")
),
mainPanel(
h3("Main Content for Page 2")
)
)
)
)
server <- function(input, output) {
# Server logic can be added here
}
shinyApp(ui = ui, server = server)
ui <- navbarPage(
"My Application",
tabPanel("Page 1",
sidebarLayout(
sidebarPanel(
h3("Sidebar Content for Page 1")
),
mainPanel(
h3("Main Content for Page 1")
)
)
),
tabPanel("Page 2",
sidebarLayout(
sidebarPanel(
h3("Sidebar Content for Page 2")
),
mainPanel(
h3("Main Content for Page 2")
)
)
)
)
server <- function(input, output) {
# Server logic can be added here
}
shinyApp(ui = ui, server = server)
install.packages("languageserver")
install.packages("styler")
styler::style_file("app.R")
library(shiny)
ui <- fluidPage(
navbarPage(
"My Application",
tabPanel(
"Index Page",
fluidRow(
column(
12,
h1("Welcome to the Index Page"),
actionButton("goToPage2", "Go to Page 2")
)
)
),
tabPanel(
"Page 2",
fluidRow(
column(
12,
h1("Welcome to Page 2"),
actionButton("goToIndex", "Go to Index Page")
)
)
)
)
)
server <- function(input, output, session) {
observeEvent(input$goToPage2, {
updateNavbarPage(session, "My Application", selected = "Page 2")
})
observeEvent(input$goToIndex, {
updateNavbarPage(session, "My Application", selected = "Index Page")
})
}
shinyApp(ui = ui, server = server)
library(shiny)
ui <- fluidPage(
navbarPage(
"My Application",
tabPanel(
"Index Page",
fluidRow(
column(
12,
h1("Welcome to the Index Page"),
actionButton("goToPage2", "Go to Page 2")
)
)
),
tabPanel(
"Page 2",
fluidRow(
column(
12,
h1("Welcome to Page 2"),
actionButton("goToIndex", "Go to Index Page")
)
)
)
)
)
server <- function(input, output, session) {
observeEvent(input$goToPage2, {
updateNavbarPage(session, "My Application", selected = "Page 2")
})
observeEvent(input$goToIndex, {
updateNavbarPage(session, "My Application", selected = "Index Page")
})
}
shinyApp(ui = ui, server = server)
runApp('Final Project')
runApp('Final Project')
ui <- fluidPage(
navbarPage(
"Travel Budget Planner",
id = "mainNav",
tabPanel(
"Home",
fluidRow(
column(
12,
h1("Plan Your Trip"),
textInput(
inputId = "location",
label = "Your Location:",
placeholder = "Enter your current location (text only)"
),
textInput(
inputId = "destination",
label = "Travel Destination:",
placeholder = "Enter your travel destination (text only)"
),
dateInput(
inputId = "arrival_date",
label = "Start Date of Trip:",
format = "yyyy-mm-dd",
value = Sys.Date(), # Default to today's date
min = Sys.Date() - 2 # Allow selection from today or two days before
),
dateInput(
inputId = "departure_date",
label = "End Date of Trip:",
format = "yyyy-mm-dd",
value = Sys.Date() + 7, # Default to one week from today
min = Sys.Date() - 2 # Allow selection from today or two days before
),
numericInput(
inputId = "total_budget",
label = "Total Budget:",
value = 1000,
min = 1,
step = 1
),
actionButton("goToResults", "Go to Results")
)
)
),
tabPanel(
"Results",
fluidRow(
column(
12,
h1("Welcome to Results"),
actionButton("goToHome", "Go to Home")
)
)
)
)
)
runApp('Final Project')
runApp('Final Project')
library(shiny)
# UI for Expense Tracker
expense_tracker_ui <- function(id) {
ns <- NS(id)
tagList(
h4("Expense Tracker"),
numericInput(ns("food"), "Food", value = 0, min = 0),
numericInput(ns("transport"), "Transport", value = 0, min = 0),
numericInput(ns("accommodation"), "Accommodation", value = 0, min = 0),
numericInput(ns("activities"), "Activities", value = 0, min = 0)
)
}
# Server for Expense Tracker
expense_tracker_server <- function(id) {
moduleServer(id, function(input, output, session) {
total_expenses <- reactive({
input$food + input$transport + input$accommodation + input$activities
})
return(total_expenses)
})
}
# UI for Recommendations
recommendations_ui <- function(id) {
ns <- NS(id)
tagList(
h4("Recommendations"),
p("Explore local attractions and activities."),
p("Book a guided tour or enjoy cultural experiences.")
)
}
# Server for Recommendations
recommendations_server <- function(id) {
moduleServer(id, function(input, output, session) {
# Placeholder for future dynamic recommendations
})
}
# UI for Travel Insights
travel_insight_ui <- function(id) {
ns <- NS(id)
tagList(
h4("Travel Insights"),
p("Check the weather in your destination."),
p("Explore visa and entry requirements.")
)
}
# Server for Travel Insights
travel_insight_server <- function(id) {
moduleServer(id, function(input, output, session) {
# Placeholder for future dynamic insights
})
}
# UI function
ui <- fluidPage(
navbarPage(
"Travel Budget Planner",
id = "mainNav",
tabPanel(
"Home",
fluidRow(
column(
12,
h1("Plan Your Trip"),
textInput(
inputId = "location",
label = "Your Location:",
placeholder = "Enter your current location"
),
textInput(
inputId = "destination",
label = "Travel Destination:",
placeholder = "Enter your travel destination"
),
dateInput(
inputId = "arrival_date",
label = "Start Date of Trip:",
format = "dd-mm-yyyy",
value = Sys.Date(),
min = Sys.Date() - 2
),
dateInput(
inputId = "departure_date",
label = "End Date of Trip:",
format = "dd-mm-yyyy",
value = Sys.Date() + 2,
min = Sys.Date() + 1
),
numericInput(
inputId = "total_budget",
label = "Total Budget:",
value = 1000,
min = 1,
step = 1
),
actionButton("goToResults", "Go to Results")
)
)
),
tabPanel(
"Results",
fluidRow(
column(
3,
actionButton("toggle_expenses", "Show Expense Tracker"),
actionButton("toggle_recommendations", "Show Recommendations"),
actionButton("toggle_insights", "Show Travel Insights")
),
# Side panels (initially hidden)
column(9,
uiOutput("expense_tracker_ui"),
uiOutput("recommendations_ui"),
uiOutput("travel_insight_ui")
)
),
# Adding margin with an empty fluidRow
fluidRow(
column(12, br(), br()) # This will create empty space between panels and "Go to Home"
),
# Button to go to home, now placed below the side panels
fluidRow(
column(12,
actionButton("goToHome", "Go to Home")
)
)
)
)
)
# Server function
server <- function(input, output, session) {
observeEvent(input$goToResults, {
# Validate "Your Location" field
if (grepl("[0-9]", input$location)) {
showModal(
modalDialog(
title = "Validation Error",
"Your Location must not contain numbers.",
easyClose = TRUE
)
)
return()
}
# Validate "Travel Destination" field
if (grepl("[0-9]", input$destination)) {
showModal(
modalDialog(
title = "Validation Error",
"Travel Destination must not contain numbers.",
easyClose = TRUE
)
)
return()
}
# Navigate to Results page if validation passes
updateNavbarPage(session, "mainNav", selected = "Results")
})
observeEvent(input$goToHome, {
updateNavbarPage(session, "mainNav", selected = "Home")
})
# Reactive value to control which panel is visible
selected_panel <- reactiveVal(NULL)
# Update selected panel on button click
observeEvent(input$toggle_expenses, {
selected_panel("expense_tracker")
})
observeEvent(input$toggle_recommendations, {
selected_panel("recommendations")
})
observeEvent(input$toggle_insights, {
selected_panel("travel_insight")
})
# Render UI based on the selected panel
output$expense_tracker_ui <- renderUI({
req(selected_panel() == "expense_tracker")
expense_tracker_ui("expense_tracker")
})
output$recommendations_ui <- renderUI({
req(selected_panel() == "recommendations")
recommendations_ui("recommendations")
})
output$travel_insight_ui <- renderUI({
req(selected_panel() == "travel_insight")
travel_insight_ui("travel_insight")
})
# Module calls for side panels
expense_tracker_server("expense_tracker")
recommendations_server("recommendations")
travel_insight_server("travel_insight")
}
shinyApp(ui = ui, server = server)
runApp('Final Project')
runApp('Final Project')
runApp('Final Project')
runApp('Final Project')
runApp('Final Project')
runApp('Final Project')
runApp('Final Project')
runApp('Final Project')
runApp('Final Project')
runApp('Final Project')
runApp('Final Project')
runApp('Final Project')
runApp('Final Project')
runApp('Final Project')
runApp('Final Project')
runApp('Final Project')
install.packages("owmr\")
install.packages("owmr")
install.packages("owmr")
shiny::runApp('Final Project')
?owmr
owmr_settings("109d734da4f858e9dca6534a23b73e2b")
get_current("Paris", units = "metric")
runApp('Final Project')