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
library(tidyverse)
library(taxadb)
lmb_itis<- get_ids("Micropterus salmoides",
provider="itis",
check_from=FALSE)
#> It looks like you tried to incorrectly use a table in a schema as source.#> ℹ If you want to specify a schema use `in_schema()` or `in_catalog()`.#> ℹ If your table actually contains "." in the name use `check_from = FALSE` to#> silence this message.#> Joining with `by = join_by(scientificName)`
Issue appears to be caused by call to dplyr::tbl(db, tbl_name) within the call to taxa_tbl(). Warning message is the result of tbl_name having a "." which is due to the database version number "22.12". Can be resolved by modifying to dplyr::tbl(db, tbl_name, check_from = FALSE)
Created on 2024-02-29 with reprex v2.1.0
Session info
The text was updated successfully, but these errors were encountered: