[Rd] Lack of 'seq_len' in 'head' in 'stopifnot'

Suharto Anggono Suharto Anggono suharto_anggono at yahoo.com
Sat Feb 4 11:18:33 CET 2017


Function 'stopifnot' in R devel r72104 has this.
    head <- function(x, n = 6L) ## basically utils:::head.default()
	x[if(n < 0L) max(length(x) + n, 0L) else min(n, length(x))]

If definition like utils:::head.default is intended, the index of 'x' should be wrapped in seq_len(...):
x[seq_len(...)]



More information about the R-devel mailing list