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
It appears that ks_rowscore returns a vector whose length and order do not (necessarily) match the input order (i.e., the order of FS_mat). This because it sorts the values (from largest to smallest) and removes the '0' p-values. This is not good practice: the function should return the vector with the same length and order as the input. The calling function will take care of sorting and filtering, if necessary.
The text was updated successfully, but these errors were encountered:
It appears that
ks_rowscore
returns a vector whose length and order do not (necessarily) match the input order (i.e., the order ofFS_mat
). This because it sorts the values (from largest to smallest) and removes the '0' p-values. This is not good practice: the function should return the vector with the same length and order as the input. The calling function will take care of sorting and filtering, if necessary.The text was updated successfully, but these errors were encountered: