-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Absent modifiers in get_download
#192
Comments
I also get this warning message when a taxon is listed twice because there is MNI and NISP data. The result is the count number is the NISP + MNI for that taxon. |
Okay, I think that this might be a bit more complicated to resolve, because it means we need to rethink the way the taxa are represented in the set_to_one <- function(x){
x$counts[x$counts > 1] <- 1
x
} and then lapply on a It's not the prettiest solution but I think it ought to work. Would columns |
For our purposes right now, we can treat NISP and MNI as presences so I can use a function to convert them but in the future it will be better to keep the original NISP and MNI information. Having two columns or two rows for taxa with NISP and MNI would work. Or an additional column that indicates if the count is an NISP or MNI, although I don't know how much of a pain this is. Thanks for your help. |
From an email bug report:
The text was updated successfully, but these errors were encountered: