QGIS vs ARCGIS The gap is closing...

I've been messing around with the 'gtrendsR' package to see how the big two 'GIS' packages are squaring up on google searches. It shows a slow but steady improvement for 'QGIS' but a 'spike' in 'ArcGIS' too in early 2020. Will try to get some more detailed 'monthly' analysis asap.

Updated: 14:56 pm Tue 9th June 2020

RStudio code:-

library(gtrendsR)
library(tidyverse)
library(ggplot2)
# You only need to change "QGIS" and "ARCGIS" to alternative google 'keywords'
# Assign 'QGIS' and 'ARCGIS' to 'res'
res <- gtrends(c("QGIS", "ARCGIS"))
# Assign 'res$interest_over_time' to 'iot'
iot <- res$interest_over_time
# Assign 'iot (and then) filter date' to 'iot2020'
iot2020 <- iot %>%
  filter(date > as.Date("2015-01-01"))
# Assign 'iot2020' to 'ggplot'
iot2020 %>%
  ggplot() + geom_line(aes(x = date,
                           y = hits,
                           color = keyword)) +
  theme_minimal() +
  labs(title = "QGIS vs ARGIS 2015-2020",
       subtitle = "Google Trends Report",
       caption = "Courtesy: gtrendsR package")


Comments

Post a Comment

Popular posts from this blog

Qgis-server...Installing the QGIS Lizmap Plugin & Lizmap Web Client

Install QGIS 3.22 LTS with QGIS-SERVER-3.22 and Apache2 on Ubuntu 22.04 LTS

Qgis-server...Installation on Ubuntu 16.04 LTS