Pontifications

code with all the operating system tags removed

tags_gt10_remove_common_tags <-
tags_count_gt_10 %>%
  filter(tag != "desktop" &
    tag != "escalate" &
    tag != "beta" &
    tag != "esr" &
    tag != "firefox-520" &
    tag != "firefox-600" &
    tag != "firefox-610" &
    tag != "firefox-6102" &
    tag != "firefox-620" &
    tag != "firefox-630" &
    tag != "linux" &
    tag != "mac-os" &
    tag != "needsinfo" &
    tag != "other" &
    tag != "rolandff62experiment" &
    tag != "windows-10" &
    tag != "windows-7" &
    tag != "windows-81" &
    tag != "windows-xp" )
p3 = ggplot(data=tags_gt10_remove_common_tags, aes(x=tag, y=n))
p3 = p3 + geom_bar(stat = "identity")
p3 = p3 + theme(axis.text.x = element_text(angle = 90, hjust = 1))
p3

graph with all the operating system tags removed

Operating system tags (linux, mac, windows) removed for the first week of Firefox Desktop 62 i.e. September 5-11, 2018

Leave a comment on github