Developing Data Product Presentation

Phillip
10-17-20

  • This is a presentation of my shiny application.
  • I loaded the pertinent libraries to make the code operate properly.
  • library(dplyr)
  • library(ggplot2)
  • library(shiny)

This application is about trying to find your favorite location in Texas for a vacation home!

If you Are looking for a nice vacation home in the state of Texas, then we can assist with the task. Play with the application below.

Tap anywhere on the map and have fun searching!

See the code for the Shiny Application below:

{r eval=FALSE}

Vacation1 <- plot_ly(highlight_key(txhousing, ~city, “select a city”))

D_1 <- ggplot(Vacation1, aes(date, median, group= city)) + geom_line()

Vac2 <- ggplotly(D_1, tooltip = “city”) %>% layout(title = “Click on an area for your vaction home location in Texas”) %>% highlight(dynamic = TRUE, selectize = TRUE)

Vac2

Thank you for testing my application!

Have a great day!