[,einfo,ANY,missing-method {reutils} | R Documentation |
Extract parts of a parsed einfo
object.
## S4 method for signature 'einfo,ANY,missing'
x[i, j]
## S4 method for signature 'einfo,ANY'
x[[i]]
x |
An |
i |
Numeric or character indices specifying the elements to extract. |
j |
Ignored. |
A list.
## Not run:
e <- einfo("pubmed")
e[1:5]
e["Description"]
e[["Links"]]
e2 <- einfo("pubmed", retmode = 'json')
e2[["header"]]
e2[["einforesult"]][["dbinfo"]][["description"]]
## End(Not run)