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
Error in if (all.equal(papply, mclapply) == TRUE) { :
the condition has length > 1
for me. It can be easily fixed by changing the line to if (isTRUE(all.equal(papply, mclapply))) {
(It also says in ?all.equal not to use all.equal directly in if expressions, but use isTRUE(all.equal(....)) instead.)
The text was updated successfully, but these errors were encountered:
On some PCs, line 508 in
applyFolds()
FDboost/R/crossvalidation.R
Line 508 in 6c172c5
for me. It can be easily fixed by changing the line to
if (isTRUE(all.equal(papply, mclapply))) {
(It also says in
?all.equal
not to useall.equal
directly inif
expressions, but useisTRUE(all.equal(....))
instead.)The text was updated successfully, but these errors were encountered: