You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if ((isTRUE(which)||is.na(which)) &&!missing(j)) stopf("which==%s (meaning return row numbers) but j is also supplied. Either you need row numbers or the result of j, but only one type of result can be returned.", which)
245
245
if (is.null(nomatch) && is.na(which)) stopf("which=NA with nomatch=0|NULL would always return an empty vector. Please change or remove either which or nomatch.")
246
246
if (!with&& missing(j)) stopf("j must be provided when with=FALSE")
247
-
if (!missing(by) &&!isTRUEorFALSE(showProgress)) stopf("%s must be TRUE or FALSE", "showProgress")
247
+
if (!missing(by) &&!is.numeric(showProgress)) stopf("%s must be numeric.", "showProgress")
248
248
irows=NULL# Meaning all rows. We avoid creating 1:nrow(x) for efficiency.
0 commit comments