Nothing
## internal function for checking select arguments in ordination plotting
## functions
.checkSelect <- function(select, scores) {
## check `select` and length of scores match
if(is.logical(select) &&
!isTRUE(all.equal(length(select), NROW(scores)))) {
warning("Length of logical vector 'select' does not match the number of scores.\nIgnoring 'select'.")
} else {
scores <- if(is.matrix(scores)) {
scores[select, , drop = FALSE]
} else {
scores[select]
}
}
scores
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.