Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

library ( shiny ) library ( gtrendsR ) library ( ggplot 2 ) ui - fluidPage ( titlePanel ( Google Trends Data Visualization )

library(shiny)
library(gtrendsR)
library(ggplot2)
ui - fluidPage(
titlePanel("Google Trends Data Visualization"),
sidebarLayout(
sidebarPanel(
dateRangeInput("dateRange", "Select Date Range",
start ="2022-01-01",
end = format(Sys.Date(),"%Y-%m-%d")),
actionButton("submit", "Generate Plot")
),
mainPanel(
plotOutput("trendPlot")
)
)
)
server - function(input, output){
observeEvent(input$submit, {
req(input$dateRange)
start_date - format(input$dateRange[1],"%Y-%m-%d")
end_date - format(input$dateRange[2],"%Y-%m-%d")
Data - gtrends(keyword = c('APPLE', 'META'), geo ="US", time = paste(start_date, end_date))
ggplot(Data, aes(x = date, y = hits, color = keyword))+
geom_point()+
labs(title = "Google Trends Data",
x = "Date",
y = "Search Volume")
})
}
shinyApp(ui = ui, server = server)
Google Trends Data Visualization
Select Date Range
Can you please help me with this code?
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database And Expert Systems Applications 31st International Conference Dexa 2020 Bratislava Slovakia September 14 17 2020 Proceedings Part 1 Lncs 12391

Authors: Sven Hartmann ,Josef Kung ,Gabriele Kotsis ,A Min Tjoa ,Ismail Khalil

1st Edition

303059002X, 978-3030590024

More Books

Students also viewed these Databases questions