-
Notifications
You must be signed in to change notification settings - Fork 179
Expand file tree
/
Copy pathformat.R
More file actions
362 lines (338 loc) · 13.9 KB
/
format.R
File metadata and controls
362 lines (338 loc) · 13.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
formatColumns = function(table, columns, template, ...) {
if (inherits(columns, 'formula')) columns = all.vars(columns)
x = table$x
colnames = base::attr(x, 'colnames', exact = TRUE)
rownames = base::attr(x, 'rownames', exact = TRUE)
x$options$rowCallback = appendFormatter(
x$options$rowCallback, columns, colnames, rownames, template, ...
)
table$x = x
table
}
#' Format table columns
#'
#' Format numeric columns in a table as currency (\code{formatCurrency()}) or
#' percentages (\code{formatPercentage()}), or round numbers to a specified
#' number of decimal places (\code{formatRound()}), or a specified number
#' of significant figures (\code{formatSignif()}). The function
#' \code{formatStyle()} applies CSS styles to table cells by column.
#' @param table a table object created from \code{\link{datatable}()}
#' @param columns the indices of the columns to be formatted (can be character,
#' numeric, logical, or a formula of the form \code{~ V1 + V2}, which is
#' equivalent to \code{c('V1', 'V2')})
#' @param currency the currency symbol
#' @param interval put a marker after how many digits of the numbers
#' @param mark the marker after every \code{interval} decimals in the numbers
#' @param dec.mark a character to indicate the decimal point
#' @param before whether to place the currency symbol before or after the values
#' @references See \url{https://rstudio.github.io/DT/functions.html} for detailed
#' documentation and examples.
#' @export
#' @examples # !formatR
#' library(DT)
#' m = cbind(matrix(rnorm(120, 1e5, 1e6), 40), runif(40), rnorm(40, 100))
#' colnames(m) = head(LETTERS, ncol(m))
#' m
#'
#' # format the columns A and C as currency, and D as percentages
#' datatable(m) %>% formatCurrency(c('A', 'C')) %>% formatPercentage('D', 2)
#'
#' # the first two columns are Euro currency, and round column E to 3 decimal places
#' datatable(m) %>% formatCurrency(1:2, '\U20AC') %>% formatRound('E', 3)
#'
#' # render vapor pressure with only two significant figures.
#' datatable(pressure) %>% formatSignif('pressure',2)
#'
#' # render vapor pressure with only two 2-decimal digits in exponential format.
#' datatable(pressure) %>% formatExp('pressure',2)
#'
#' # apply CSS styles to columns
#' datatable(iris) %>%
#' formatStyle('Sepal.Length', fontWeight = styleInterval(5, c('bold', 'weight'))) %>%
#' formatStyle('Sepal.Width',
#' color = styleInterval(3.4, c('red', 'white')),
#' backgroundColor = styleInterval(3.4, c('yellow', 'gray'))
#' )
formatCurrency = function(
table, columns, currency = '$', interval = 3, mark = ',', digits = 2,
dec.mark = getOption('OutDec'), before = TRUE
) {
currency = gsub("'", "\\\\'", currency)
mark = gsub("'", "\\\\'", mark)
formatColumns(table, columns, tplCurrency, currency, interval, mark, digits, dec.mark, before)
}
#' @export
#' @rdname formatCurrency
#' @param prefix string to put in front of the column values
#' @param suffix string to put after the column values
formatString = function(table, columns, prefix = '', suffix = '') {
formatColumns(table, columns, tplString, prefix, suffix)
}
#' @export
#' @rdname formatCurrency
#' @param digits the number of decimal places to round to
formatPercentage = function(
table, columns, digits = 0, interval = 3, mark = ',', dec.mark = getOption('OutDec')
) {
formatColumns(table, columns, tplPercentage, digits, interval, mark, dec.mark)
}
#' @export
#' @rdname formatCurrency
formatRound = function(
table, columns, digits = 2, interval = 3, mark = ',', dec.mark = getOption('OutDec')
) {
formatColumns(table, columns, tplRound, digits, interval, mark, dec.mark)
}
#' @export
#' @rdname formatCurrency
formatSignif = function(
table, columns, digits = 2, interval = 3, mark = ',', dec.mark = getOption('OutDec')
) {
formatColumns(table, columns, tplSignif, digits, interval, mark, dec.mark)
}
#' @export
#' @rdname formatCurrency
formatExp = function(
table, columns, digits = 2, interval = 3, mark = ',', dec.mark = getOption('OutDec')
) {
formatColumns(table, columns, tplExp, digits, interval, mark, dec.mark)
}
#' @export
#' @rdname formatCurrency
#' @param method the method(s) to convert a date to string in JavaScript; see
#' \code{DT:::DateMethods} for a list of possible methods, and
#' \url{http://mzl.la/1xGe99W} for a full reference
#' @param params a list parameters for the specific date conversion method,
#' e.g., for the \code{toLocaleDateString()} method, your browser may support
#' \code{params = list('ko-KR', list(year = 'numeric', month = 'long', day =
#' 'numeric'))}
formatDate = function(table, columns, method = 'toDateString', params = NULL) {
x = table$x
if (x$filter != 'none') {
if (inherits(columns, 'formula')) columns = all.vars(columns)
colnames = base::attr(x, 'colnames', exact = TRUE)
rownames = base::attr(x, 'rownames', exact = TRUE)
if (is.null(params)) params = list()
cols = sprintf("%d", name2int(columns, colnames, rownames))
x$filterDateFmt = as.list(x$filterDateFmt)
for (col in cols) x$filterDateFmt[[col]] = list(
method = method, params = toJSON(params)
)
table$x = x
}
# the code above is used to ensure the date(time) filter displays the same format or
# timezone as the column value
formatColumns(table, columns, tplDate, method, params)
}
#' @param valueColumns indices of the columns from which the cell values are
#' obtained; this can be different with the \code{columns} argument, e.g. you
#' may style one column based on the values of a different column
#' @param target the target to apply the CSS styles to (the current cell or the
#' full row)
#' @param fontWeight the font weight, e.g. \code{'bold'} and \code{'normal'}
#' @param color the font color, e.g. \code{'red'} and \code{'#ee00aa'}
#' @param backgroundColor the background color of table cells
#' @param background the background of table cells
#' @param ... other CSS properties, e.g. \code{'border'}, \code{'font-size'},
#' \code{'text-align'}, and so on; if you want to condition CSS styles on the
#' cell values, you may use the helper functions such as
#' \code{\link{styleInterval}()}; note the actual CSS property names are
#' dash-separated, but you can use camelCase names in this function (otherwise
#' you will have to use backticks to quote the names, e.g. \code{`font-size` =
#' '12px'}), and this function will automatically convert camelCase names to
#' dash-separated names (e.g. \code{'fontWeight'} will be converted to
#' \code{'font-weight'} internally)
#' @export
#' @rdname formatCurrency
formatStyle = function(
table, columns, valueColumns = columns, target = c('cell', 'row'),
fontWeight = NULL, color = NULL, backgroundColor = NULL, background = NULL, ...
) {
styles = dropNULL(list(
fontWeight = fontWeight, color = color, backgroundColor = backgroundColor,
background = background, ...
))
formatColumns(table, columns, tplStyle, valueColumns, match.arg(target), styles)
}
# turn character/logical indices to numeric indices
name2int = function(name, names, rownames) {
if (is.numeric(name)) {
i = if (all(name >= 0)) name else seq_along(names)[name]
if (!rownames) i = i - 1
return(i)
}
i = unname(setNames(seq_along(names), names)[name]) - 1
if (any(is.na(i))) stop(
'You specified the columns: ', paste(name, collapse = ', '), ', ',
'but the column names of the data are ', paste(names, collapse = ', ')
)
i
}
appendFormatter = function(js, name, names, rownames = TRUE, template, ...) {
js = if (length(js) == 0) c('function(row, data) {', '}') else {
unlist(strsplit(as.character(js), '\n'))
}
i = name2int(name, names, rownames)
JS(append(
js, after = length(js) - 1,
template(i, ..., names, rownames)
))
}
tplCurrency = function(cols, currency, interval, mark, digits, dec.mark, before, ...) {
sprintf(
"DTWidget.formatCurrency(this, row, data, %d, '%s', %d, %d, '%s', '%s', %s);",
cols, currency, digits, interval, mark, dec.mark, if (before) 'true' else 'false'
)
}
tplString = function(cols, prefix, suffix, ...) {
sprintf("DTWidget.formatString(this, row, data, %d, '%s', '%s');", cols, prefix, suffix)
}
tplPercentage = function(cols, digits, interval, mark, dec.mark, ...) {
sprintf(
"DTWidget.formatPercentage(this, row, data, %d, %s, %s, '%s', '%s');",
cols, digits, interval, mark, dec.mark
)
}
tplRound = function(cols, digits, interval, mark, dec.mark, ...) {
sprintf(
"DTWidget.formatRound(this, row, data, %d, %d, %s, '%s', '%s');",
cols, digits, interval, mark, dec.mark
)
}
tplSignif = function(cols, digits, interval, mark, dec.mark, ...) {
sprintf(
"DTWidget.formatSignif(this, row, data, %d, %d, %d, '%s', '%s');",
cols, digits, interval, mark, dec.mark
)
}
tplExp = function(cols, digits, interval, mark, dec.mark, ...) {
sprintf(
"DTWidget.formatExp(this, row, data, %d, %d, %d, '%s', '%s');",
cols, digits, interval, mark, dec.mark
)
}
tplDate = function(cols, method, params, ...) {
params = if (length(params) > 0) paste(',', toJSON(params)) else ''
sprintf("DTWidget.formatDate(this, row, data, %d, '%s'%s);", cols, method, params)
}
DateMethods = c(
'toDateString', 'toISOString', 'toLocaleDateString', 'toLocaleString',
'toLocaleTimeString', 'toString', 'toTimeString', 'toUTCString'
)
tplStyle = function(cols, valueCols, target, styles, ...) {
if (length(styles) == 0) return()
if (!is.list(styles)) stop("'styles' must be a list")
JSclass = class(JS(''))
# if a style is specified in JS(), do not single quote it (it is a JS expression)
styles = vapply(styles, function(s) {
isJS = inherits(s, JSclass)
s = paste(s, collapse = '\n')
if (isJS) s else sprintf("'%s'", s)
}, FUN.VALUE = character(1))
css = paste(sprintf("'%s':%s", upperToDash(names(styles)), styles), collapse = ',')
valueCols = name2int(valueCols, ...)
switch(
target,
cell = sprintf(
"var value=data[%s]; $(this.api().cell(row, %s).node()).css({%s});",
valueCols, cols, css
),
row = sprintf(
"var value=data[%s]; $(row).css({%s});",
valueCols, css
),
stop('Invalid target!')
)
}
jsValues = function(x) {
if (inherits(x, c("POSIXt", "POSIXct", "POSIXlt"))) {
sprintf("'%s'", format(x, "%Y-%m-%dT%H:%M:%SZ", tz = "UTC"))
} else if (inherits(x, "Date")) {
sprintf("'%s'", format(x, "%Y-%m-%d"))
} else if (is.numeric(x)) {
sprintf("%f", x)
} else {
x
}
}
#' Conditional CSS styles
#'
#' A few helper functions for the \code{\link{formatStyle}()} function to
#' calculate CSS styles for table cells based on the cell values. Under the
#' hood, they just generate JavaScript and CSS code from the values specified in
#' R.
#'
#' The function \code{styleInterval()} maps intervals to CSS values. Its
#' argument \code{values} must be of length \code{n + 1} where \code{n =
#' length(cuts)}. The right-closed interval \samp{(cuts[i - 1], cuts[i]]} is
#' mapped to \samp{values[i]} for \samp{i = 2, 3, ..., n}; \samp{values[1]} is
#' for the interval \samp{(-Inf, cuts[1]]}, and \samp{values[n + 1]} is for
#' \samp{(cuts[n], +Inf)}. You can think of the order of \code{cuts} and
#' \code{values} using this diagram: \samp{-Inf -> values[1] -> cuts[1] ->
#' values[2] -> cuts[2] -> ... -> values[n] -> cuts[n] -> values[n + 1] ->
#' +Inf}.
#'
#' The function \code{styleEqual()} maps data values to CSS values in the
#' one-to-one manner, i.e. \code{values[i]} is used when the table cell value is
#' \code{levels[i]}.
#'
#' The function \code{styleColorBar()} can be used to draw background color bars
#' behind table cells in a column, and the width of bars is proportional to the
#' column values.
#' @param cuts a vector of cut points (sorted increasingly)
#' @param values a vector of CSS values
#' @export
styleInterval = function(cuts, values) {
n = length(cuts)
if (n != length(values) - 1)
stop("length(cuts) must be equal to length(values) - 1")
values = sprintf("'%s'", values)
if (n == 0) return(values)
if (!all(cuts == sort(cuts))) stop("'cuts' must be sorted increasingly")
js = "isNaN(parseFloat(value)) ? '' : " # missing or non-numeric values in data
for (i in seq_len(n)) {
js = paste0(js, sprintf('value <= %s ? %s : ', jsValues(cuts[i]), values[i]))
}
JS(paste0(js, values[n + 1]))
}
#' @param levels a character vector of data values to be mapped (one-to-one) to
#' CSS values
#' @param default a string used as the the default CSS value for values other than levels
#' @export
#' @rdname styleInterval
styleEqual = function(levels, values, default = "") {
n = length(levels)
if (n != length(values))
stop("length(levels) must be equal to length(values)")
if (!is.character(default) || length(default) != 1)
stop("default must be a string")
if (n == 0) return("''")
levels2 = levels
if (is.character(levels)) levels2 = gsub("'", "\\'", levels)
levels2 = if (is.Date(levels2) || is.numeric(levels2)) jsValues(levels2) else sprintf("'%s'", levels2)
levels2[is.na(levels)] = 'null'
js = ''
for (i in seq_len(n)) {
js = paste0(js, sprintf("value == %s ? '%s' : ", levels2[i], values[i]))
}
JS(paste0(js, sprintf("'%s'", default)))
}
#' @param data a numeric vector whose range will be used for scaling the
#' table data from 0-100 before being represented as color bars. A vector
#' of length 2 is acceptable here for specifying a range possibly wider or
#' narrower than the range of the table data itself.
#' @param color the color of the bars
#' @param angle a number of degrees representing the direction to fill the
#' gradient relative to a horizontal line and the gradient line, going
#' counter-clockwise. For example, 90 fills right to left and -90 fills
#' left to right.
#' @export
#' @rdname styleInterval
styleColorBar = function(data, color, angle=90) {
rg = range(data, na.rm = TRUE, finite = TRUE)
r1 = rg[1]; r2 = rg[2]; r = r2 - r1
JS(sprintf(
"isNaN(parseFloat(value)) || value <= %f ? '' : 'linear-gradient(%fdeg, transparent ' + (%f - value)/%f * 100 + '%%, %s ' + (%f - value)/%f * 100 + '%%)'",
r1, angle, r2, r, color, r2, r
))
}