Skip to content

Instantly share code, notes, and snippets.

View klmr's full-sized avatar
📦
Making your R code easier to reuse

Konrad Rudolph klmr

📦
Making your R code easier to reuse
View GitHub Profile
@klmr
klmr / # gmp - 2017-02-12_21-14-12.txt
Created February 12, 2017 21:16
gmp on Ubuntu 12.04.5 LTS - Homebrew build logs
Homebrew build logs for gmp on Ubuntu 12.04.5 LTS
Build date: 2017-02-12 21:14:12
@klmr
klmr / # gmp - 2017-02-12_16-23-59.txt
Created February 12, 2017 16:25
gmp on Ubuntu 12.04.5 LTS - Homebrew build logs
Homebrew build logs for gmp on Ubuntu 12.04.5 LTS
Build date: 2017-02-12 16:23:59
@klmr
klmr / # gcc - 2017-02-08_17-08-45.txt
Created February 8, 2017 17:45
gcc on Ubuntu 12.04.5 LTS - Homebrew build logs
Homebrew build logs for gcc on Ubuntu 12.04.5 LTS
Build date: 2017-02-08 17:08:45
@klmr
klmr / # gcc - 2017-02-08_13-37-19.txt
Created February 8, 2017 14:50
gcc on Ubuntu 12.04.5 LTS - Homebrew build logs
Homebrew build logs for gcc on Ubuntu 12.04.5 LTS
Build date: 2017-02-08 13:37:19
@klmr
klmr / # gcc - 2017-02-03_17-30-32.txt
Created February 3, 2017 17:32
gcc on Ubuntu 12.04.5 LTS - Homebrew build logs
Homebrew build logs for gcc on Ubuntu 12.04.5 LTS
Build date: 2017-02-03 17:30:32
@klmr
klmr / # gcc - 2017-01-31_15-36-56.txt
Created January 31, 2017 16:31
gcc on Ubuntu 12.04.5 LTS - Homebrew build logs
Homebrew build logs for gcc on Ubuntu 12.04.5 LTS
Build date: 2017-01-31 15:36:56
@klmr
klmr / # xmlto - 2017-01-30_18-31-03.txt
Created January 30, 2017 18:33
xmlto on Ubuntu 12.04.5 LTS - Homebrew build logs
Homebrew build logs for xmlto on Ubuntu 12.04.5 LTS
Build date: 2017-01-30 18:31:03
@klmr
klmr / # msgpack - 2017-01-30_13-01-18.txt
Created January 30, 2017 13:09
msgpack on Ubuntu 12.04.5 LTS - Homebrew build logs
Homebrew build logs for msgpack on Ubuntu 12.04.5 LTS
Build date: 2017-01-30 13:01:18
@klmr
klmr / # msgpack - 2017-01-30_11-48-58.txt
Created January 30, 2017 11:49
msgpack on Ubuntu 12.04.5 LTS - Homebrew build logs
Homebrew build logs for msgpack on Ubuntu 12.04.5 LTS
Build date: 2017-01-30 11:48:58
@klmr
klmr / mutate_when.r
Last active November 21, 2017 19:47
Missing `mutate_when` function for dplyr
modules::import_package('rlang', attach = TRUE)
mutate_when = function (.data, .filter, ...) {
dots = dots_definitions(...)$dots
rows = eval_tidy(enquo(.filter), .data)
.data[rows, names(dots)] =
lapply(dots, eval_tidy, data = .data[rows, , drop = FALSE])
.data
}