detect_medical_entities {aws.comprehend} | R Documentation |
Detect entities in a source medical text
detect_medical_entities(text, language = "en", version = c("2", "1"), ...)
text |
A character string containing a text to entities analyze, or a character vector to perform analysis separately for each element. |
language |
A character string containing a two-letter language code. Currently only “en” is supported. |
version |
A character string containing the version of the API that should be used. Currently only "1" or "2" are supported. |
... |
Additional arguments passed to |
A data frame
## Not run:
# simple example
medical_detect_entities("Mrs. Smith comes in today complaining of shortness of breath.")
txt <-c("Mrs. Smith comes in today.",
"She is complaining of shortnesss of breath.")
medical_detect_entities(txt)
## End(Not run)