├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── R ├── RxNormR.R ├── apis.R ├── utils.R └── zzz.R ├── RxNormR.Rproj └── man ├── RxNormR.Rd ├── rx_allProperties.Rd ├── rx_allconcepts.Rd ├── rx_allndcs.Rd ├── rx_allrelated.Rd ├── rx_approximateTerm.Rd ├── rx_brands.Rd ├── rx_displaynames.Rd ├── rx_drugs.Rd ├── rx_filter.Rd ├── rx_idtypes.Rd ├── rx_ndcproperties.Rd ├── rx_ndcs.Rd ├── rx_ndcstatus.Rd ├── rx_propCategories.Rd ├── rx_properties.Rd ├── rx_property.Rd ├── rx_propnames.Rd ├── rx_related_rela.Rd ├── rx_related_tty.Rd ├── rx_relatypes.Rd ├── rx_rxcui_idtype.Rd ├── rx_rxcui_name.Rd ├── rx_sourcetypes.Rd ├── rx_spellingsuggestions.Rd ├── rx_status.Rd ├── rx_termtypes.Rd └── rx_version.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpancia/RxNormR/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpancia/RxNormR/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpancia/RxNormR/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpancia/RxNormR/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/RxNormR.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpancia/RxNormR/HEAD/R/RxNormR.R -------------------------------------------------------------------------------- /R/apis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpancia/RxNormR/HEAD/R/apis.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpancia/RxNormR/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpancia/RxNormR/HEAD/R/zzz.R -------------------------------------------------------------------------------- /RxNormR.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpancia/RxNormR/HEAD/RxNormR.Rproj -------------------------------------------------------------------------------- /man/RxNormR.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpancia/RxNormR/HEAD/man/RxNormR.Rd -------------------------------------------------------------------------------- /man/rx_allProperties.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpancia/RxNormR/HEAD/man/rx_allProperties.Rd -------------------------------------------------------------------------------- /man/rx_allconcepts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpancia/RxNormR/HEAD/man/rx_allconcepts.Rd -------------------------------------------------------------------------------- /man/rx_allndcs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpancia/RxNormR/HEAD/man/rx_allndcs.Rd -------------------------------------------------------------------------------- /man/rx_allrelated.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpancia/RxNormR/HEAD/man/rx_allrelated.Rd -------------------------------------------------------------------------------- /man/rx_approximateTerm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpancia/RxNormR/HEAD/man/rx_approximateTerm.Rd -------------------------------------------------------------------------------- /man/rx_brands.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpancia/RxNormR/HEAD/man/rx_brands.Rd -------------------------------------------------------------------------------- /man/rx_displaynames.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpancia/RxNormR/HEAD/man/rx_displaynames.Rd -------------------------------------------------------------------------------- /man/rx_drugs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpancia/RxNormR/HEAD/man/rx_drugs.Rd -------------------------------------------------------------------------------- /man/rx_filter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpancia/RxNormR/HEAD/man/rx_filter.Rd -------------------------------------------------------------------------------- /man/rx_idtypes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpancia/RxNormR/HEAD/man/rx_idtypes.Rd -------------------------------------------------------------------------------- /man/rx_ndcproperties.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpancia/RxNormR/HEAD/man/rx_ndcproperties.Rd -------------------------------------------------------------------------------- /man/rx_ndcs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpancia/RxNormR/HEAD/man/rx_ndcs.Rd -------------------------------------------------------------------------------- /man/rx_ndcstatus.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpancia/RxNormR/HEAD/man/rx_ndcstatus.Rd -------------------------------------------------------------------------------- /man/rx_propCategories.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpancia/RxNormR/HEAD/man/rx_propCategories.Rd -------------------------------------------------------------------------------- /man/rx_properties.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpancia/RxNormR/HEAD/man/rx_properties.Rd -------------------------------------------------------------------------------- /man/rx_property.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpancia/RxNormR/HEAD/man/rx_property.Rd -------------------------------------------------------------------------------- /man/rx_propnames.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpancia/RxNormR/HEAD/man/rx_propnames.Rd -------------------------------------------------------------------------------- /man/rx_related_rela.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpancia/RxNormR/HEAD/man/rx_related_rela.Rd -------------------------------------------------------------------------------- /man/rx_related_tty.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpancia/RxNormR/HEAD/man/rx_related_tty.Rd -------------------------------------------------------------------------------- /man/rx_relatypes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpancia/RxNormR/HEAD/man/rx_relatypes.Rd -------------------------------------------------------------------------------- /man/rx_rxcui_idtype.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpancia/RxNormR/HEAD/man/rx_rxcui_idtype.Rd -------------------------------------------------------------------------------- /man/rx_rxcui_name.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpancia/RxNormR/HEAD/man/rx_rxcui_name.Rd -------------------------------------------------------------------------------- /man/rx_sourcetypes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpancia/RxNormR/HEAD/man/rx_sourcetypes.Rd -------------------------------------------------------------------------------- /man/rx_spellingsuggestions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpancia/RxNormR/HEAD/man/rx_spellingsuggestions.Rd -------------------------------------------------------------------------------- /man/rx_status.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpancia/RxNormR/HEAD/man/rx_status.Rd -------------------------------------------------------------------------------- /man/rx_termtypes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpancia/RxNormR/HEAD/man/rx_termtypes.Rd -------------------------------------------------------------------------------- /man/rx_version.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mpancia/RxNormR/HEAD/man/rx_version.Rd --------------------------------------------------------------------------------