
Last chance! 50% off unlimited learning
Sale ends in
Query the BCPC Compendium of Pesticide Common Names https://pesticidecompendium.bcpc.org formerly known as Alan Woods Compendium of Pesticide Common Names
bcpc_query(
query,
from = c("name", "cas"),
verbose = getOption("verbose"),
type,
...
)
A list of eight entries: common-name, status, preferred IUPAC Name, IUPAC Name, cas, formula, activity, subactivity, inchikey, inchi and source url.
character; search string
character; type of input ('cas' or 'name')
logical; print message during processing to console?
deprecated
additional arguments to internal utility functions
Eduard Szöcs, Tamás Stirling, Eric R. Scott, Andreas Scharmüller, Ralf B. Schäfer (2020). webchem: An R Package to Retrieve Chemical Information from the Web. Journal of Statistical Software, 93(13). tools:::Rd_expr_doi("10.18637/jss.v093.i13").
if (FALSE) {
bcpc_query('Fluazinam', from = 'name')
out <- bcpc_query(c('Fluazinam', 'Diclofop'), from = 'name')
out
# extract subactivity from object
sapply(out, function(y) y$subactivity[1])
# use CAS-numbers
bcpc_query("79622-59-6", from = 'cas')
}
Run the code above in your browser using DataLab