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
There seems to be an issue with the cross-validation code (starts from line 59. The problem lies in line 72 where the subsetting results in a NULL variable (it uses "cutvar" that is not declared anywhere throughout the code).
I resolved the problem by correcting the subsetting bit: changed data=cutvar to data=SC[,c("FAIL",names(signif))]. It's rather crude but works like magic,
The text was updated successfully, but these errors were encountered:
Hi!
There seems to be an issue with the cross-validation code (starts from line 59. The problem lies in line 72 where the subsetting results in a NULL variable (it uses "cutvar" that is not declared anywhere throughout the code).
I resolved the problem by correcting the subsetting bit: changed
data=cutvar
todata=SC[,c("FAIL",names(signif))]
. It's rather crude but works like magic,The text was updated successfully, but these errors were encountered: