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

  1. Customized Maps With Popups
    I generally post directly on my website blog now at http://aureliandesign.com/seattle-graphic-design-blog. html but here's a special announcement about a new design service: customized maps with popup. For more information and a sample, see
    http://aureliandesign.com/Interactive-City-Map-Design.shtml

    ReplyDelete

Post a Comment

Popular posts from this blog

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

Qgis-server...Installation on Ubuntu 16.04 LTS

Qgis-server...Bringing a map image into the browser on Ubuntu 16.04 LTS