This package has been commissioned by the NHS-R community and is intended to be used to web scrape the NHS Data Dictionary website for useful look up tables. The NHS-R community have been pivotal in getting this package off the ground.
The package is maintained by Gary Hutson - Head of Advanced Analytics at Arden and GEM Commissioning Support Unit and to contact the maintainer directly you can navigate to this site.
Additionally, the package has been developed with generic web scraping functionality to allow other websites containing data tables and elements to be scraped.
To load the package, you can use the below command:
This brings in the functions needed to work with the package. The below sub sections will show how to use the package, as intended.
This function expects no return and is a way to query the NHS Data Dictionary database to get the most recent list of data elements and their associated lookups. The return of this will provide a tibble of all the links currently on the NHS Data Dictionary website:
nhs_tibble <- NHSDataDictionaRy::nhs_data_elements()
#> There has been an issue with the return.
#> Please check url passed to the function, or set the SSL_needed parameter to FALSE, as the sites SSL certificate may have expired. Additionally, please make sure you are connected to the internet.
#>
#> The list links has not been successful on this occassion.
#> There is an issue with the linkScrapeR function, or access to the internet has been disconnected.
print(head(nhs_tibble))
#> NULLThis tibble gives a list of all lookups and their associated xpath codes i.e. a direct link to an HTML element, which is the standard way of extracting HTML DOM content. This is where the other functions in the package become powerful.
The NHSDataDictionaRy package provides a couple of Microsoft Excel convenience functions for working with text data. These are:
I will demonstrate how these can be used on the tibble extracted from the previous example in the following sub sections.
To utilise the left_xl function it expects two parameters - the first is the text to work with and the second is the number of characters to left trim by:
This works the same way as the left function, but trims from the right of the text inward:
This function takes a slightly different approach and expects 3 input parameter, the first being the text to trim, the second being where to start trimming and the third parameter is the termination point i.e. where to stop the trimming of the string:
This is a simple, but useful function, as it gets the length of the string:
This function can analyse a website and get all the current hyperlinks of a website. This function is used to produce the nhs_data_elements() function, as it calls this function to analyse all the current hyperlinks on the NHS Data Dictionary package, but my example shows an example of scraping the NHSR community website to access the links:
# Analyse all the links on a website
website_url <- "https://hutsons-hacks.info/"
results <- NHSDataDictionaRy::linkScrapeR(website_url)
print(head(results, 20))
#> # A tibble: 20 × 2
#> link_name url
#> <chr> <chr>
#> 1 "Skip to content" #main
#> 2 "Home" https://hutsons-ha…
#> 3 "About Me" https://hutsons-ha…
#> 4 "Cookie Policy (EU)" https://hutsons-ha…
#> 5 "R Blogs" https://hutsons-ha…
#> 6 "Python Blogs" https://hutsons-ha…
#> 7 "My GitHub" https://github.com…
#> 8 "NHS-R Community" https://nhsrcommun…
#> 9 "" https://hutsons-ha…
#> 10 "Hutsons-hacks" https://hutsons-ha…
#> 11 "" https://hutsons-ha…
#> 12 "Python" https://hutsons-ha…
#> 13 "Gary Hutson" https://hutsons-ha…
#> 14 "0" https://hutsons-ha…
#> 15 "What is Reinforcement Learning – Learning from feedback" https://hutsons-ha…
#> 16 "Python" https://hutsons-ha…
#> 17 "Gary Hutson" https://hutsons-ha…
#> 18 "0" https://hutsons-ha…
#> 19 "Creating doodles with HED detection and ControlNet" https://hutsons-ha…
#> 20 "" https://hutsons-ha…To navigate to the specific URL you can use the utils::browseURL command:
This package provides functionality for working with the nhs_data_elements extracted from the NHS Data Dictionary website. The two main useful function to extract elements are the tableR function and the xPathTextR function. These can work with the tibble returned to extract useful lookups.
The scrapeR function is the workhorse, but the tableR wraps the results of the function in a nice tibble output. This will show you how to utilise the return tibble and to pass the function through the tableR to scrape a tibble to be utilised for lookups:
# Filter by a specific lookup required
if(is.null(nhs_tibble)){
print("The NHS tibble has not loaded, this could be due to internet connection issues.")
} else{
reduced_tibble <-
dplyr::filter(nhs_tibble, link_name == "ACTIVITY TREATMENT FUNCTION CODE")
}
#> [1] "The NHS tibble has not loaded, this could be due to internet connection issues."
#Use the tableR function to query the NHS Data Dictionary website and return the associate tibble
national_codes <- NHSDataDictionaRy::tableR(url=reduced_tibble$full_url,
xpath = reduced_tibble$xpath_nat_code,
title = "NHS Hospital Activity Treatment Function National Codes")
# The query has returned results, if the url does not have a lookup table an error will be thrown
print(head(national_codes,10))
#> NULLNot all lookups will have associated national code tables, if they are not returned you will receive a message saying the lookup table is not available for this NHS Data Dictionary type.
There are common lookups that are needed, and this is one such mapping between specialty code, to get the description of the specialty unit description. I will show an example with a made up data frame to illustrate the use case for these lookups and to have up to date lookups:
act_aggregations <- tibble(SpecCode = as.character(c(101,102,103, 104, 105)),
ActivityCounts = round(rnorm(5,250,3),0),
Month = rep("May", 5))
# Use dplyr to join the NHS activity by specialty code
if(is.null(national_codes)){
print("The NHS tibble has not loaded, this could be due to internet connection issues.")
} else{
act_aggregations %>%
left_join(national_codes, by = c("SpecCode"="Code"))
}
#> [1] "The NHS tibble has not loaded, this could be due to internet connection issues."
# This easily joins the lookup on to your data
The benefit of having it in an R package is that you can instantaneously have a lookup of the most relevant and up to date NHS lookups, replacing the need to have a massive data warehouse to capture this information.
This function allows you to perform the steps above in one consolidated function. This means that there is no need to call the nhs_data_elements() function and tableR functions separately, they are all nested in this nice convenience function. This is how you would use it:
nhs_table_findeR("ACCOMMODATION STATUS CODE", title="Accomodation Status Code National Code Lookup")
#> There has been an issue with the return.
#> Please check url passed to the function, or set the SSL_needed parameter to FALSE, as the sites SSL certificate may have expired. Additionally, please make sure you are connected to the internet.
#>
#> The list links has not been successful on this occassion.
#> There is an issue with the linkScrapeR function, or access to the internet has been disconnected.
#> NULL
#Lower case still works
glimpse(nhs_table_findeR("accommodation status code"))
#> There has been an issue with the return.
#> Please check url passed to the function, or set the SSL_needed parameter to FALSE, as the sites SSL certificate may have expired. Additionally, please make sure you are connected to the internet.
#>
#> The list links has not been successful on this occassion.
#> There is an issue with the linkScrapeR function, or access to the internet has been disconnected.
#> NULLThis function has been provided to return elements from a website, other than html tables, as these functions predominately work with tables. The below example shows how this can be implemented, but requires the retrieval of the xpath via the Inspect command in Google Chrome (CTRL + SHIFT + I):
url <- "https://datadictionary.nhs.uk/data_elements/abbreviated_mental_test_score.html"
xpath_element <- '//*[@id="element_abbreviated_mental_test_score.description"]'
# Run the xpathTextR function to retrieve details of the element retrieved
result_list <- NHSDataDictionaRy::xpathTextR(url, xpath_element)
#> [1] "Please make sure the url and xpath are specified correctly and make sure you are connected to the internet. "
print(result_list)
#> NULLThis provides details of the result, the text retrieved live from the website - this would need some cleaning, the website passed to the function, the xpath included, the result of the node search, the date and time the list was generated and the person and domain accessing this.
The example below shows how the text could be cleaned once it is retrieved:
# Use the returned result and do some text processing
clean_text <- trimws(unlist(result_list$result))
clean_text <- clean_text %>%
gsub("[\r\n]", "", .) %>% #Remove new line and breaks
trimws() %>% #Get rid of any white space
as.character() #Cast to a character vector
print(clean_text)
#> character(0)I have used the trim white space function to extract the result element from the returned list from the previous function and now I use piping to a gsub function to remove newlines and spaces, I use the trimws() command again to make sure the spacing is sorted and then I convert (cast) this into a character string. Finally, the results are printed.
A contribution has been added to the package to allow for the OpenSafely data to be examined. To get the OpenSafely data you can specify the code list required and this will pull it into a list. To do this follow the below example:
# Check if the connection has returned any values
if(is.null(result_list)){
print("There is an issue with the internet. This function cannot be used until the internet is available.")
} else{
os_list <- NHSDataDictionaRy::openSafely_listR("opensafely/ace-inhibitor-medications")
glimpse(os_list)
}
#> [1] "There is an issue with the internet. This function cannot be used until the internet is available."This extends the functionality of the tableR wrapper to pull back the HTML tables, and has been added as its specific function for convenience in working with the OpenSafely site.
There are lots of use cases for this, but I would like to keep iterating this tool so please contact me with suggestions of what could be included in future versions.