Create an app that has a beautiful user interface that looks like you are standing in the middle of a street. The app should ask for a street name and by click of a button show all the road names in North America that have similar road names. Plot all those roads (5 maximum). You may not be able to find similar roads as you don't have relevant data, so just producing placeholders or example database is okay. UI is important right now
Drop files here
or click to upload
library(shiny)
library(bslib)
library(ggplot2)
source("ui.R")
source("server.R")
source("data.R")
shinyApp(ui = ui, server = server)
Hi! I can help you with any questions about Shiny and R. What would you like to know?