We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
this is the code:
insects <- data.frame( taxonID = c(1, 2, 3, 4, 5, 6), family = c( "Alexiidae", "Anthicidae", "Anthribidae", "Anthribidae", "Biphyllidae", "Brentidae" ), scientificName = c( "Sphaerosoma seidlitzi", "Endomia tenuicollis tenuicollis", "Anthribus fasciatus", "Phaenotherion fasciculatum fasciculatum", "Diplocoelus fagi", "Holotrichapion (Apiops) pisi" ) ) output <- ReLTER::taxon_id_pesi( table = insects, taxaColumn = 3 ) output
the output return also the check of first row of the input table
taxonID<dbl> | family<chr> | originalNameUsage<chr> | scientificName<chr> | -- | -- | -- | -- | -- 1 | Alexiidae | Sphaerosoma seidlitzi | Sphaerosoma seidlitzi | 2 | Anthicidae | Endomia tenuicollis tenuicollis | Sphaerosoma seidlitzi | 3 | Anthribidae | Anthribus fasciatus | Sphaerosoma seidlitzi | 4 | Anthribidae | Phaenotherion fasciculatum fasciculatum | Sphaerosoma seidlitzi | 5 | Biphyllidae | Diplocoelus fagi | Sphaerosoma seidlitzi | 6 | Brentidae | Holotrichapion (Apiops) pisi | Sphaerosoma seidlitzi
The text was updated successfully, but these errors were encountered:
No branches or pull requests
this is the code:
the output return also the check of first row of the input table
The text was updated successfully, but these errors were encountered: