R 3.5.1이 공개되었다.

2018/07/05

R 3.5.1 Feather Spray가 공개되었다.

📣 "R 3.5.1 Feather Spray"
👏 @_R_Foundationhttps://t.co/vvrFvpS45n #rstats pic.twitter.com/awH6dUPcJg

— Mara Averick (@dataandme) July 2, 2018

Heads up: R 3.5.0+ has shiny new utils for grabbing dots inside a function: #RStats pic.twitter.com/egyBRWnIrM

— Advik Shreekumar (@AdvikSh) July 2, 2018
f1 <- function(...){ print(..1) }
f5 <- function(...){ print(..5) }

f1("a")
f5('a', 'b', 'c', 'd', 'e', 'f')

g <- function(x, ...){ print(...elt(x)) }

g(1, "a", "b")
g(2, "a", "b")

h <- function(...) { print(...length()) }

h()
h('a')
h('a', 'b')