Marc Kupietz | 91145b0 | 2020-01-29 15:58:36 +0100 | [diff] [blame] | 1 | #' Experimental: Plot interactive frequency by year graphs with confidence intervals using highcharter |
| 2 | #' |
| 3 | #' Experimental convenience function for plotting typical frequency by year graphs with confidence intervals using highcharter. |
| 4 | #' \bold{Warning:} This function may be moved to a new package. |
| 5 | #' |
| 6 | #' @import highcharter |
| 7 | #' @export |
| 8 | #' |
| 9 | #' @param df data frame like the value of a \code{\link{frequencyQuery}} |
Marc Kupietz | 43a6ade | 2020-02-18 17:01:44 +0100 | [diff] [blame] | 10 | #' @param as.alternatives boolean decides whether queries should be treated as mutually exclusive and exhaustive wrt. to some meaningful class (e.g. spelling variants of a certain word form). |
Marc Kupietz | 91145b0 | 2020-01-29 15:58:36 +0100 | [diff] [blame] | 11 | #' @param ylabel defaults to \% if \code{as.alternatives} is \code{true} and to "ipm" otherwise. |
Marc Kupietz | ab0b071 | 2020-05-04 16:24:57 +0200 | [diff] [blame^] | 12 | #' @param smooth boolean decides whether the graph is smoothed using the highcharts plot types spline and areasplinerange. |
Marc Kupietz | 5b503f4 | 2020-04-09 15:26:00 +0200 | [diff] [blame] | 13 | #' @param ... additional arguments passed to \code{\link{hc_add_series}} |
Marc Kupietz | 91145b0 | 2020-01-29 15:58:36 +0100 | [diff] [blame] | 14 | #' |
| 15 | #' @examples |
Marc Kupietz | 657d8e7 | 2020-02-25 18:31:50 +0100 | [diff] [blame] | 16 | #' \donttest{year <- c(1990:2018)}\dontshow{year <- c(2013:2013)} |
| 17 | #' \donttest{alternatives <- c("macht []{0,3} Sinn", "ergibt []{0,3} Sinn")}\dontshow{alternatives <- c("macht []{0,3} Sinn")} |
Marc Kupietz | 91145b0 | 2020-01-29 15:58:36 +0100 | [diff] [blame] | 18 | #' new("KorAPConnection", verbose = TRUE) %>% |
Marc Kupietz | 657d8e7 | 2020-02-25 18:31:50 +0100 | [diff] [blame] | 19 | #' frequencyQuery(query = alternatives, |
Marc Kupietz | 05b2277 | 2020-02-18 21:58:42 +0100 | [diff] [blame] | 20 | #' vc = paste("textType = /Zeit.*/ & pubDate in", year), |
Marc Kupietz | 91145b0 | 2020-01-29 15:58:36 +0100 | [diff] [blame] | 21 | #' as.alternatives = TRUE) %>% |
| 22 | #' hc_freq_by_year_ci(as.alternatives = TRUE) |
| 23 | #' |
Marc Kupietz | 05b2277 | 2020-02-18 21:58:42 +0100 | [diff] [blame] | 24 | #' \donttest{ |
Marc Kupietz | 10f65c4 | 2020-01-31 15:18:24 +0100 | [diff] [blame] | 25 | #' kco <- new("KorAPConnection", verbose = TRUE) |
| 26 | #' expand_grid( |
| 27 | #' condition = c("textDomain = /Wirtschaft.*/", "textDomain != /Wirtschaft.*/"), |
| 28 | #' year = (2005:2011) |
| 29 | #' ) %>% |
| 30 | #' cbind(frequencyQuery( |
| 31 | #' kco, |
| 32 | #' "[tt/l=Heuschrecke]", |
| 33 | #' paste0(.$condition, " & pubDate in ", .$year) |
| 34 | #' )) %>% |
| 35 | #' hc_freq_by_year_ci() |
Marc Kupietz | 05b2277 | 2020-02-18 21:58:42 +0100 | [diff] [blame] | 36 | #' } |
Marc Kupietz | 10f65c4 | 2020-01-31 15:18:24 +0100 | [diff] [blame] | 37 | #' |
Marc Kupietz | ab0b071 | 2020-05-04 16:24:57 +0200 | [diff] [blame^] | 38 | hc_freq_by_year_ci <- function(df, as.alternatives = FALSE, |
| 39 | ylabel = if(as.alternatives) "%" else "ipm", |
| 40 | smooth = FALSE, |
| 41 | ...) { |
Marc Kupietz | 91145b0 | 2020-01-29 15:58:36 +0100 | [diff] [blame] | 42 | title <- "" |
| 43 | df <- df %>% |
| 44 | { if(! as.alternatives) ipm(.) else RKorAPClient::percent(.) } |
| 45 | |
| 46 | if (!"year" %in% colnames(df)) { |
Marc Kupietz | cf1771d | 2020-03-04 16:03:04 +0100 | [diff] [blame] | 47 | df <- df %>% mutate(year = as.integer(queryStringToLabel(df$vc, pubDateOnly = TRUE))) |
Marc Kupietz | 91145b0 | 2020-01-29 15:58:36 +0100 | [diff] [blame] | 48 | } |
| 49 | if (!"condition" %in% colnames(df)) { |
| 50 | if (length(base::unique(df$query)) > 1) { |
| 51 | df <- df %>% mutate(condition = query) |
Marc Kupietz | cf1771d | 2020-03-04 16:03:04 +0100 | [diff] [blame] | 52 | if(length(base::unique(queryStringToLabel(df$vc, excludePubDate = TRUE ))) > 1) { |
Marc Kupietz | 91145b0 | 2020-01-29 15:58:36 +0100 | [diff] [blame] | 53 | df <- df %>% mutate(condition = paste(condition, " & ", |
Marc Kupietz | cf1771d | 2020-03-04 16:03:04 +0100 | [diff] [blame] | 54 | queryStringToLabel(vc, excludePubDate = TRUE ))) |
Marc Kupietz | 91145b0 | 2020-01-29 15:58:36 +0100 | [diff] [blame] | 55 | } |
| 56 | } else { |
Marc Kupietz | 5d70ffe | 2020-03-12 11:16:43 +0100 | [diff] [blame] | 57 | if (length(base::unique(queryStringToLabel(df$vc, excludePubDate = TRUE ))) > 1) { |
| 58 | title <- base::unique(df$query) |
Marc Kupietz | cf1771d | 2020-03-04 16:03:04 +0100 | [diff] [blame] | 59 | df <- df %>% mutate(condition = queryStringToLabel(vc, excludePubDate = TRUE )) |
Marc Kupietz | 5d70ffe | 2020-03-12 11:16:43 +0100 | [diff] [blame] | 60 | } else { |
| 61 | df <- df %>% mutate(condition = query) |
Marc Kupietz | 91145b0 | 2020-01-29 15:58:36 +0100 | [diff] [blame] | 62 | } |
| 63 | } |
| 64 | } |
| 65 | # use the D3 palette which provides 20 attractive and distinguishable colours |
| 66 | palette <- c("#1F77B4", "#FF7F0E", "#2CA02C", "#D62728", "#9467BD", "#8C564B", "#E377C2", "#7F7F7F", "#BCBD22", "#17BECF", "#AEC7E8", "#FFBB78", "#98DF8A", "#FF9896", "#C5B0D5", "#C49C94", "#F7B6D2", "#C7C7C7", "#DBDB8D", "#9EDAE5") |
| 67 | highcharter::highchart() %>% |
| 68 | hc_title(text=title) %>% |
Marc Kupietz | 91145b0 | 2020-01-29 15:58:36 +0100 | [diff] [blame] | 69 | hc_yAxis( |
| 70 | title = list(text = if (as.alternatives) "" else ylabel), |
| 71 | ceiling = if (as.alternatives) 100 else NULL, |
| 72 | floor = 0, |
| 73 | labels = if(as.alternatives) list(format = paste0("{value}\U2009", ylabel)) else NULL |
| 74 | ) %>% |
Marc Kupietz | cf1771d | 2020-03-04 16:03:04 +0100 | [diff] [blame] | 75 | hc_xAxis(allowDecimals=FALSE) %>% |
Marc Kupietz | 91145b0 | 2020-01-29 15:58:36 +0100 | [diff] [blame] | 76 | hc_add_theme(hc_theme_google(colors=palette)) %>% |
| 77 | hc_plotOptions( |
Marc Kupietz | cf1771d | 2020-03-04 16:03:04 +0100 | [diff] [blame] | 78 | series = list(enabled = TRUE), |
Marc Kupietz | ab0b071 | 2020-05-04 16:24:57 +0200 | [diff] [blame^] | 79 | spline = list(cursor = 'pointer', point = list(events = list( |
| 80 | click = JS("function() { window.open(this.click, 'korap'); }") |
| 81 | ))), |
Marc Kupietz | 91145b0 | 2020-01-29 15:58:36 +0100 | [diff] [blame] | 82 | line = list(cursor = 'pointer', point = list(events = list( |
| 83 | click = JS("function() { window.open(this.click, 'korap'); }") |
| 84 | )))) %>% |
Marc Kupietz | cf1771d | 2020-03-04 16:03:04 +0100 | [diff] [blame] | 85 | hc_credits(enabled = TRUE, |
Marc Kupietz | 900d052 | 2020-03-19 13:36:45 +0100 | [diff] [blame] | 86 | text = "KorAP R Client Package", |
| 87 | href = "https://github.com/KorAP/RKorAPClient/") %>% |
Marc Kupietz | cf1771d | 2020-03-04 16:03:04 +0100 | [diff] [blame] | 88 | hc_exporting(enabled = TRUE) %>% |
Marc Kupietz | 91145b0 | 2020-01-29 15:58:36 +0100 | [diff] [blame] | 89 | hc_tooltip( |
Marc Kupietz | ab0b071 | 2020-05-04 16:24:57 +0200 | [diff] [blame^] | 90 | headerFormat = '<span style="font-size: 10pt">{point.key}</span><br/>', |
Marc Kupietz | 91145b0 | 2020-01-29 15:58:36 +0100 | [diff] [blame] | 91 | formatter = JS(paste0("function (tooltip) { |
| 92 | var str = tooltip.defaultFormatter.call(this, tooltip); |
| 93 | if(Array.isArray(str)) { |
| 94 | str = str.join(''); |
| 95 | } |
| 96 | for (var i = 0; i < this.points.length; i++) { |
| 97 | str = str.replace(/([0-9.,]+.?)", ylabel, "/, this.points[i].point.count+' ($1@)'); |
| 98 | } |
| 99 | return str.replace(/@/g, '", ylabel, "') |
| 100 | } ")), |
Marc Kupietz | cf1771d | 2020-03-04 16:03:04 +0100 | [diff] [blame] | 101 | crosshairs = TRUE, |
Marc Kupietz | 91145b0 | 2020-01-29 15:58:36 +0100 | [diff] [blame] | 102 | valueDecimals = 2, |
Marc Kupietz | cf1771d | 2020-03-04 16:03:04 +0100 | [diff] [blame] | 103 | shared = TRUE, |
Marc Kupietz | 91145b0 | 2020-01-29 15:58:36 +0100 | [diff] [blame] | 104 | valueSuffix = paste0('\U2009', ylabel) |
| 105 | ) %>% |
Marc Kupietz | ab0b071 | 2020-05-04 16:24:57 +0200 | [diff] [blame^] | 106 | hc_add_series_korap_frequencies(df, smooth, as.alternatives, ...) |
Marc Kupietz | 91145b0 | 2020-01-29 15:58:36 +0100 | [diff] [blame] | 107 | } |
| 108 | |
Marc Kupietz | a4f3653 | 2020-02-03 22:50:08 +0100 | [diff] [blame] | 109 | ## Mute notes: "no visible binding for global variable:" |
| 110 | globalVariables(c("value", "query", "condition", "vc")) |
| 111 | |
Marc Kupietz | ab0b071 | 2020-05-04 16:24:57 +0200 | [diff] [blame^] | 112 | hc_add_series_korap_frequencies <- function(hc, df, smooth = FALSE, |
| 113 | as.alternatives = FALSE, |
| 114 | ...) { |
Marc Kupietz | 91145b0 | 2020-01-29 15:58:36 +0100 | [diff] [blame] | 115 | index <- 0 |
Marc Kupietz | ab0b071 | 2020-05-04 16:24:57 +0200 | [diff] [blame^] | 116 | type <- ifelse(smooth, "spline", "line") |
| 117 | areatype <- ifelse(smooth, "areasplinerange", "arearange") |
Marc Kupietz | 91145b0 | 2020-01-29 15:58:36 +0100 | [diff] [blame] | 118 | for(q in unique(df$condition)) { |
| 119 | dat <- df[df$condition==q,] |
| 120 | hc <- hc %>% hc_add_series( |
| 121 | marker = list(radius = 2), |
| 122 | name = q, |
| 123 | data = data.frame( |
| 124 | year = dat$year, |
| 125 | value = if (as.alternatives) dat$f else dat$ipm, |
| 126 | count = dat$totalResults, |
| 127 | click = dat$webUIRequestUrl |
| 128 | ), |
| 129 | hcaes(year, value), |
Marc Kupietz | ab0b071 | 2020-05-04 16:24:57 +0200 | [diff] [blame^] | 130 | type = type, |
Marc Kupietz | 91145b0 | 2020-01-29 15:58:36 +0100 | [diff] [blame] | 131 | colorIndex = index, |
Marc Kupietz | 5b503f4 | 2020-04-09 15:26:00 +0200 | [diff] [blame] | 132 | zIndex = 1, |
| 133 | ... |
Marc Kupietz | 91145b0 | 2020-01-29 15:58:36 +0100 | [diff] [blame] | 134 | ) %>% |
| 135 | hc_add_series( |
| 136 | name = "ci", |
| 137 | data = dat[,c('year', 'conf.low', 'conf.high')], |
| 138 | hcaes(x = year, low = conf.low, high = conf.high), |
Marc Kupietz | ab0b071 | 2020-05-04 16:24:57 +0200 | [diff] [blame^] | 139 | type = areatype, |
Marc Kupietz | 91145b0 | 2020-01-29 15:58:36 +0100 | [diff] [blame] | 140 | fillOpacity = 0.3, |
| 141 | lineWidth = 0, |
Marc Kupietz | cf1771d | 2020-03-04 16:03:04 +0100 | [diff] [blame] | 142 | marker = list(enabled = FALSE), |
| 143 | enableMouseTracking = FALSE, |
Marc Kupietz | 91145b0 | 2020-01-29 15:58:36 +0100 | [diff] [blame] | 144 | linkedTo= ':previous', |
| 145 | colorIndex = index, |
| 146 | zIndex = 0 |
| 147 | ) |
| 148 | index <- index+1 |
| 149 | } |
| 150 | hc |
| 151 | } |
Marc Kupietz | 882f08c | 2020-03-18 13:30:31 +0100 | [diff] [blame] | 152 | |
| 153 | .onAttach <- function(libname = find.package("RKorAPClient"), |
| 154 | pkgname = "RKorAPClient") { |
| 155 | packageStartupMessage( |
| 156 | "If you intend to use the Highcharts plot options, please note that Highcharts (www.highcharts.com) is a Highsoft software product which is not free for commercial and governmental use." |
| 157 | ) |
| 158 | } |
| 159 | |