-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathinfer_icd10.Rd
More file actions
34 lines (31 loc) · 1.11 KB
/
infer_icd10.Rd
File metadata and controls
34 lines (31 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/infer_icd10.R
\name{infer_icd10}
\alias{infer_icd10}
\title{Detect conditions and associated ICD10 codes in a source medical text}
\usage{
infer_icd10(text, language = "en", ...)
}
\arguments{
\item{text}{A character string containing a text to entities analyze, or a character vector to perform analysis separately for each element.}
\item{language}{A character string containing a two-letter language code. Currently only \dQuote{en} is supported.}
\item{\dots}{Additional arguments passed to \code{\link{comprehendHTTP}}.}
}
\value{
A data frame
}
\description{
Detect detect possible medical conditions as entities and link them to ICD10 codes in a source medical text
}
\examples{
\dontrun{
# simple example
infer_icd10("Mrs. Smith comes in today complaining of shortness of breath.")
txt <-c("Mrs. Smith comes in today.",
"She is complaining of shortnesss of breath.")
infer_icd10(txt)
}
}
\references{
\href{https://docs.aws.amazon.com/comprehend-medical/latest/dev/ontology-icd10.html}{AWS Comprehend Medical Developer Guide}
}