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 shows there are missing values in your data file. I used (is.na) function to find the rows and columns.
if (any(is.na(otus))) {
stop("Error: Missing values detected in 'otus'. Please handle missing values.")
}
##Result: Error: Error: Missing values detected in 'otus'. Please handle missing values. To check the row with missing values
rows_with_na <- which(apply(metadata, 1, anyNA))
cols_with_na <- which(apply(metadata, 2, anyNA))
I used replace function to add 0, That worked for me
Dear FEAST Group,
Hello,
I'm trying run FEAST on a 16S dataset and have encontered an error while running the algorithm. Command and error below:
Thanks!
Kyle
The text was updated successfully, but these errors were encountered: