1 Introduction

The role of the independent sector in the provision of elective care has been brought into the spotlight by rising pressures of the NHS and growing waiting lists. Our analysis aims to contribute to existing work undertaken by the Health Foundation investigating the landscape of independent sector healthcare services.

The Health Foundation found an increasing proportion of care is delivered by the independent sector; this varies by specialitiy and is highest in T&O, GI and ophthalmology. Treatment rates in all specialities are not achieving the 30%-increase target set to address the backlog of care. The Health Foundation suggests uptake in the independent sector is matching the reductions in NHS provided care. It was also found that the independent sector share of provision varies regionally and by deprivation measures.

We aim to further the above analysis by utilising patient-level inpatient and outpatient data to more closely examine trends in independent sector care. Given the above findings, we will focus on ophthalmology and orthopaedic care, presenting our findings by demographics, geographically and by procedure.


2 Methods

In an exploratory fashion, we will present the changing market share of independent care in elective ophthalmic and orthopaedic services. We will be guided by our preliminary findings starting by assessing patterns in national data developing on to consider local findings.

2.1 Data collection


We gathered acute inpatient and outpatient data via the Secondary Uses Services (SUS) dataset, accessed through the National Commissioning Data Repository (NCDR) platform. To capture the pre-pandemic context, we limit our data to the years 2017 through to 2022. We count completed inpatient admissions or outpatient attendances filtered to only include non-emergency contacts with selected Healthcare Resource Group (HRG) codes.

The HRG code describes the content of an admission in terms of resource required and is linked to the of commissioning care. We use commissioning codes rather than procedure codes because data completeness is preferable and they offer the suitable level of granularity for data processing and presentation of findings. All HRG codes were updated to their corresponding code in the most recent HRG version. The activity we captured was linked to the following HRG codes (right).

Data was accessed at a national level with local feilds included to indicate the patient’s ICS and local authority of residence. Similarly, the low level geography (LSOA) of the patient was included to link to the Index of Multiple Deprivation (IMD) to assign each admission to a deprivation decile (1 = most deprived 10% of the population, 10 = the most affluent 10% of the population).

The SUS data contains only NHS-funded care. We identified the sector in which the care was delivered by assessing the ODS provider type, linked to site (hospital/care centre) in which the care occurred. We compare the rate of NHS-funded care delivered in NHS sites to NHS-funded care delivered in independent sector sites. Limitations of our data dictate that we do not count any privately funded care, regardless of site of delivered.


Subchapter BZ – Eyes and Periorbita Procedures and Disorders:

create_dt(
  hrg_lookup %>% 
  filter(str_detect(procedure_group, "Eyes")) %>% 
  select(1,2) %>% 
  rename(HRG = hrg_3, 
         Procedure = procedure_desc)
  )

Subchapter HN – Orthopaedic Non-Trauma Procedures:

create_dt(
  hrg_lookup %>% 
  filter(str_detect(procedure_group, "Orthopaedic")) %>% 
  select(1,2) %>% 
  rename(HRG = hrg_3, 
         Procedure = procedure_desc)
  )

2.2 Data processing

Activity data was grouped by demographic, geographic and activity-type variables and counts of episodes, spells (admissions or attendances) and individuals were calculated. Aggregated data was exported from the NCDR SQL server and processed locally in RStudio/RMarkdown.

For each group of interest we had activity counts for care delivered in both the independent sector (IS) and in NHS clinical settings. We calculated the independent sector market share (%) as follows:

\[ IndependentSectorShare = ISActivity / (ISActivity + NHSActivity) * 100 \]

Incomplete admissions/attendances, i.e. those without a discharge date, were excluded. Similarly, those without valid identification numbers were excluded.

Upon publication of our findings, the underlying code will be available on Github.


4 Further discussion/Questions