| atc_online_property | R Documentation |
Gets data from the WHOCC website to determine properties of an Anatomical Therapeutic Chemical (ATC) (e.g. an antimicrobial), such as the name, defined daily dose (DDD) or standard unit.
atc_online_property(atc_code, property, administration = "O",
url = "https://atcddd.fhi.no/atc_ddd_index/?code=%s&showdescription=no",
url_vet = "https://atcddd.fhi.no/atcvet/atcvet_index/?code=%s&showdescription=no")
atc_online_groups(atc_code, ...)
atc_online_ddd(atc_code, ...)
atc_online_ddd_units(atc_code, ...)
atc_code |
A character (vector) with ATC code(s) of antimicrobials, will be coerced with |
property |
Property of an ATC code. Valid values are |
administration |
Type of administration when using |
url |
URL of website of the WHOCC. The sign |
url_vet |
URL of website of the WHOCC for veterinary medicine. The sign |
... |
Arguments to pass on to |
Options for argument administration:
"Implant" = Implant
"Inhal" = Inhalation
"Instill" = Instillation
"N" = nasal
"O" = oral
"P" = parenteral
"R" = rectal
"SL" = sublingual/buccal
"TD" = transdermal
"V" = vaginal
Abbreviations of return values when using property = "U" (unit):
"g" = gram
"mg" = milligram
"mcg" = microgram
"U" = unit
"TU" = thousand units
"MU" = million units
"mmol" = millimole
"ml" = millilitre (e.g. eyedrops)
N.B. This function requires an internet connection and only works if the following packages are installed: curl, rvest, xml2.
https://atcddd.fhi.no/atc_ddd_alterations__cumulative/ddd_alterations/abbrevations/
if (requireNamespace("curl") && requireNamespace("rvest") && requireNamespace("xml2")) {
# oral DDD (Defined Daily Dose) of amoxicillin
atc_online_property("J01CA04", "DDD", "O")
atc_online_ddd(ab_atc("amox"))
# parenteral DDD (Defined Daily Dose) of amoxicillin
atc_online_property("J01CA04", "DDD", "P")
atc_online_property("J01CA04", property = "groups") # search hierarchical groups of amoxicillin
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.