nhs-r-community / NHSRpopulation

API package to get postcode and Indices of Multiple Deprivation (IMD) data from the ONS by LSOA, currently for England.
https://nhs-r-community.github.io/NHSRpopulation/
Other
11 stars 1 forks source link

Redundant `libary()` calls in vignette #49

Open ChrisBeeley opened 3 months ago

ChrisBeeley commented 3 months ago

In the getting started vignette there are package loads:

library(tibble)
library(NHSRpopulation)

However these packages are then called with ::

tibble_postcodes <- postcodes |>
  tibble::as_tibble() |>
  dplyr::rename(postcode = value)

Making the library() calls redundant. Suggest remove for simplicity