Skip to main content

Automating incidence and prevalence analysis in open cohorts

Abstract

Motivation

Data is increasingly used for improvement and research in public health, especially administrative data such as that collected in electronic health records. Patients enter and exit these typically open-cohort datasets non-uniformly; this can render simple questions about incidence and prevalence time-consuming and with unnecessary variation between analyses. We therefore developed methods to automate analysis of incidence and prevalence in open cohort datasets, to improve transparency, productivity and reproducibility of analyses.

Implementation

We provide both a code-free set of rules for incidence and prevalence that can be applied to any open cohort, and a python Command Line Interface implementation of these rules requiring python 3.9 or later.

General features

The Command Line Interface is used to calculate incidence and point prevalence time series from open cohort data. The ruleset can be used in developing other implementations or can be rearranged to form other analytical questions such as period prevalence.

Availability

The command line interface is freely available from https://github.com/THINKINGGroup/analogy_publication.

Peer Review reports

Motivation

Introduction

With the growing demand for and accessibility of administrative healthcare databases, analysis of the large datasets available require scalable analysis methods and dissemination [1]. Solutions must be readily deployable, reliably reproducible, minimise additional resource or capabilities requirements, and adhere to open science and code principles [2]. However, such data analysis solutions require domain knowledge, technical skills and significant time investment [3] and so few generalisable solutions have been deployed [4]. Our team have previously developed the ‘Data Extractor for Epidemiological Research’ (DExtER) [5] to automate analysis-ready extraction from healthcare data according to specific epidemiological study designs, and in this paper outline open analytics to handle analysis-ready data outputs.

Open code

Open Code refers to making research code available as a research output, for example by creating open source software or sharing electronic notebooks. By making research reproducible, replicable and transparent, this approach promotes productivity, innovation and trust in science [6, 7]. However, its adoption in current research can be limited by concerns about personal data privacy issues, resource constraints and intellectual property [8]. In the context of healthcare data analysis and epidemiological research, adopting open code principles can increase the impact of tools and research outputs. For example, openPrescribing [9] is a tool to improve the quality, safety, and cost-effectiveness of prescribing practices and provides open access to all code and analysis via GitHub. Open source projects allow for greater scrutiny, adaptability, and trust, and can address major challenges in healthcare research [10].

Rationale for automation

Automating health data analysis enables greater validity and attention to methods by standardising processes and analyses, and increase productivity of analytic resources [11]. Incidence and prevalence code is often generated per-analysis, which reduces standardisation of the analysis and leads to issues in reproducibility and comparability. Other work has previously noted the impact that choices in calculating incidence and prevalence can have on analytical results [12], and Ostropolets et al. showed that analysis choices in parameters such as incidence definition, age, and data source can generate 1000-fold differences in incidence rate estimates [13]. This could allow analysts to focus more time on implications and critical analysis of their findings, leading to more valuable insights and a greater understanding of population health. With the growing quantity of healthcare data increasing year on year, due to advances in healthcare technology, population growth, and an ageing population, automated analysis will be essential to using this data to its full potential.

Open cohorts, incidence, and prevalence

Open cohorts generate datasets where participants can continuously enter and exit the cohort throughout the study period of the cohort [14]; this results in non-uniform follow up periods during which events can be observed, and adds complexity to analysis. Incidence and prevalence are used extensively in epidemiology to describe the population health needs, for example using data from open cohorts, and are used by policy makers to identify and plan for disease-associated burden of disease by developing health services, research programmes or preventative policies [15, 16]. Prevalence, “the proportion of a population who have specific characteristics in a given time period”, informs the need for health and social care services, while incidence, “the number of new cases of a characteristic that develop in a population in a specified time period”, is crucial in tracking disease causes, trends and evaluating the effectiveness of interventions [17]. Reducing unwarranted variation is urgently necessary and automated incidence and prevalence can provide efficient and reproducible methods across systems, datasets, and populations. Automated analysis can thus support a more precise understanding of disease patterns across times, places, and populations, helping to identify health inequalities and inform population health needs interventions [18]. This enables data-driven decision-making in public health, and can contribute to the overall improvement of health services and equity.

Implementation

In this paper we provide both an explicit implementation-free set of rules for incidence and prevalence calculation that can be applied to any open cohort, and a command line interface for a python implementation of these rules.

Analysis approach

We provide methods for calculating point prevalence and period incidence time series, and calculate confidence intervals using Byar’s method as described elsewhere [19]. Other types of incidence and prevalence metrics can be calculated by rearranging the rules provided; for example, period prevalence can be calculated using the denominator rules from incidence and the incidence from prevalence. Point prevalence is the proportion of a population with a characteristic such as a diagnosis at a given point in time (e.g. proportion with a diagnosis of high blood pressure). Incidence is the rate at which a population experiences an event such as receiving a diagnosis over a given period of time (e.g. the rate of heart attacks).

Data requirements

Calculating estimates from an open cohort requires that for each observation, the time at risk is calculated. Therefore, each observation must have the following information:

  • START DATE Date on which an individual’s study participation starts.

  • END DATE Date on which an individual’s study participation ends.

  • EVENT DATE Date on which event occurred, or NA if not recorded.

  • PERIOD START Date on which a point prevalence is calculated, or observation for an incidence calculation begins.

  • PERIOD END Date on which observation for an incidence calculation ends.

Rules

Point prevalence

Definition of numerator in point prevalence for a given population P:

$$\begin{aligned} \text {Numerator} (P) = \sum I_{n} \end{aligned}$$

where \(I_{n}\) is an indicator function defined as

$$\begin{aligned} I_{n} = \left\{ \begin{array}{ll} 1, &{} \text {if}\ Z_n == TRUE\\ 0, &{} \text {otherwise} \end{array}\right. \end{aligned}$$
(1)

where \(Z_{n}\) is True if all three statements below are True:

  1. 1.

    START DATE \(\varvec{<=}\) PERIOD START (patient follow-up began before or on the start date for the analysis.)

  2. 2.

    END DATE \(\varvec{>=}\) PERIOD START (The patient follow-up end date occurred on or after the start date for the analysis.)

  3. 3.

    EVENT DATE \(\varvec{<=}\) PERIOD START (The event date occurred before or on the start date for the analysis.)

Definition of denominator in point prevalence for a given population P

 

$$\begin{aligned} \text {Denominator} (P) = \sum I_{d} \end{aligned}$$

where \(I_{d}\) is an indicator function defined as

$$\begin{aligned} I_{d} = \left\{ \begin{array}{ll} 1, &{} \text {if}\ Z_d == TRUE\\ 0, &{} \text {otherwise} \end{array}\right. \end{aligned}$$
(2)

where \(Z_{d}\) is True if both statements below are True:

  1. 1.

    START DATE \(\varvec{<=}\) PERIOD START (patient follow-up began before or on the start date for the analysis.)

  2. 2.

    END DATE \(\varvec{>=}\) PERIOD START (patient follow-up end date occurred on or after the start date for the analysis.)

Period incidence

Definition of numerator in incidence rate for a given population P:

$$\begin{aligned} \text {Numerator} (P) = \sum I_{n} \end{aligned}$$

where \(I_{n}\) is an indicator function defined as

$$\begin{aligned} I_{n} = \left\{ \begin{array}{ll} 1, &{} \text {if}\ Z_n == TRUE\\ 0, &{} \text {otherwise} \end{array}\right. \end{aligned}$$
(3)

where \(Z_{n}\) is True if all statements below are True:

  1. 1.

    PERIOD START \(\varvec{<=}\) EVENT DATE \(\varvec{<}\) PERIOD END (The event date occurred on or after the start date but before the end date of the analysis.)

  2. 2.

    END DATE \(\varvec{>=}\) PERIOD START (The patient follow-up end date occurred on or after the start date for the analysis.)

  3. 3.

    START DATE \(\varvec{<}\) PERIOD END (Patient follow-up started before the end date of the analysis.)

Definition of denominator in incidence rate for a given population P:

$$\begin{aligned} \text {Denominator} (P) = \sum PT_{d} \end{aligned}$$

where \(PT_{d}\) is total person time contributed by each patient in the period of interest.

$$\begin{aligned} PT_{d} = \left\{ \begin{array}{ll} (\text {END\_OBSERVATION}-\text {START\_OBSERVATION})/365.25, &{} \text {if}\ Z_d == TRUE\\ 0, &{} \text {otherwise} \end{array}\right. \end{aligned}$$
(4)

where,

  • START OBSERVATION \(=\) maximum(START DATE, PERIOD START)

  • END OBSERVATION \(=\) minimum(END DATE, EVENT DATE, PERIOD END)

and, \(Z_{d}\) is True if all statements below are True:

  1. 1.

    START DATE \(\varvec{<}\) PERIOD END (Patient follow-up occurred before the end date of the analysis.)

  2. 2.

    END DATE \(\varvec{>=}\) PERIOD START (The patient end date occurred on or after the start date of the analysis.)

  3. 3.

    EVENT DATE \(\varvec{>=}\) PERIOD START or EVENT DATE \(==\) NA (The event date occurred on or after the start date for the analysis.)

  4. 4.

    EVENT DATE \(\varvec{>}\) START DATE or EVENT DATE \(==\) NA (The event date occurred after patient follow up began or there was no event.)

Python implementation

These rules have been implemented into a python command line interface (CLI) available from https://github.com/THINKINGGroup/analogy_publication and used as part of our workflow for analysis of primary care records. The CLI requires python 3.9 or above and contains example data to test. We recommend using Anaconda for open source python distribution. Below we present an example output analysing incidence and prevalence of ectopic pregnancy.

Use case

Ectopic pregnancy

Ectopic pregnancy presents a key risk to maternal health, and ruptured ectopic pregnancy is a predominant cause of mortality in the first trimester [20]. UK incidence and prevalence has not been reported in the literature since 2011 [21] and no study has reported the burden of disease in key subgroups. We provide the incidence and prevalence of ectopic pregnancy in the CPRD Aurum database, derived from UK primary care data.

Study design

We extracted data for women aged 12-60 from CPRD Aurum between 2006 and 2021 [22]. 10,248,694 women were eligible for inclusion and ectopic pregnancy definitions are available in S1 & S2 Codelists. Incidence and prevalence were calculated according to Implementation.

Overall Incidence and Prevalence

Figure 1 shows the incidence of ectopic pregnancy in women aged 12-60 years rose from 38.0 (95% CI: 36.0, 40.1) per 100,000 person years in 2006 to 44.1 (95% CI: 42.0, 46.2) per 100,000 person years in 2021. In the same period, the prevalence of women who had ever had a recorded diagnosis of ectopic pregnancy rose from 839.3 (95% CI: 829.7, 848.9) per 100,000 population in 2006, to reach 1209.2 per 100,000 population in 2021 (95% CI: 1197.8, 1219.1).

Fig. 1
figure 1

Incidence rate and lifetime prevalence of ectopic pregnancy per 100,000 women. Women aged 12-60 years of age; Clinical Practice Research Datalink Aurum; UK, 2006-2021

Incidence and prevalence by subgroup

Between 2006-2021, ectopic pregnancy was higher in women of black ethnicity compared to white ethnicity, while no difference was observed between mixed and white ethnicity, as shown in Fig. 2 (black: 1793.5 [95% CI: 1735.0, 1853.4], mixed: 1292.8 [1215.9, 1373.3], white: 1282.4 [1269.1, 1295.8]). Women of asian, other, and missing ethnicities reported lower prevalence of ectopic pregnancy when compared to patients of white ethnicity (asian: 966.3 [95% CI: 936.1, 997.2], other: 823.6 [757.6, 893.9], missing: 862.7 [839.2, 886.7]). Additional data including deprivation and regional subgroups are reported in S3,S4 and S5 Additional Data.

Fig. 2
figure 2

Prevalence of ectopic pregnancy per 100,000 women by ethnicity. Women aged 12-60 years of age; Clinical Practice Research Datalink Aurum; UK, 2006-2021

Discussion

We have demonstrated a standardised process for calculating incidence and prevalence in an open cohort dataset. Describing the underlying rules allows other analysts to reuse the rules in their own analyses and reinterpret them for other contexts such as different data sources, and aids communication and scrutiny of the analysis undertaken. We encourage readers to apply our easy-to-use CLI on their own datasets to test their analysis for replicability, and report differences to increase transparency around the effect of analysis methods, which have been shown to create substantial differences in estimates of effect sizes [23]. No UK study of the burden of ectopic pregnancy has been undertaken since 2011. However, our analysis of ectopic pregnancy is similar in design to the automated analysis estimate from PrevalenceUK, who report an annual incidence of ectopic pregnancy per woman of 46.5 per 100,000 for the UK in 2019, 4.7% larger than our estimate of 44.4 per 100,000 [24]. Three differences in analysis may explain the magnitude of difference; we used CPRD aurum only, while PrevalenceUK use a combined CPRD Aurum-Gold database; we restricted age of women included in the study to 12-60 years while PrevalenceUK likely used a whole population denominator; and differences in implementation of incidence.

Strengths and limitations

We chose ectopic pregnancy as a use case to demonstrate the ability to rapidly identify and address gaps in research using transparent methods. However, it also reveals challenges to this automated process in specialist conditions; a more natural denominator for ectopic pregnancy might be pregnancy, rather than women of child bearing age. Biases in the source data must also be considered and studies are likely to require input from analysts or other experienced data users. For example, the 44% rise in ectopic pregnancy prevalence, concurrent with modest change in incidence, reflects better recording over time as electronic health records mature. Automated analytics in open cohorts are therefore likely to remain a specialist tool.

Applications and future developments

We have implemented standardisation of incidence and prevalence locally, using the DExtER platform to produce a complete incidence and prevalence pipeline of analysis, and are developing tools to automate open cohort analysis using propensity score matching, cox regression, and statistical process control. Our tool’s automation and subgrouping features may have particular applications into inequalities policy making and research, by allowing rapid investigation of multiple conditions, in multiple contexts, affecting different groups of people.

Conclusion

Many teams use common datasets such as CPRD Gold and Aurum, and exact replication of results by other teams should be feasible. Our ruleset enables analysts to use clearly defined criteria for calculating estimates, and our CLI tool can automate these calculations, for example to support sensitivity checks of results using alternative code. However barriers still exist to achieving these open science goals.

Availability of data and materials

Individual patient data are available from CPRD with valid license; all analysis results are presented in S3-5: Additional Data.

References

  1. Unim B, Mattei E, Carle F, Tolonen H, Bernal-Delgado E, Achterberg P, et al. Health data collection methods and procedures across EU member states: findings from the InfAct Joint Action on health information. Arch Public Health. 2022;80(1):17.

    Article  PubMed  PubMed Central  Google Scholar 

  2. National Academies of Sciences, Engineering, and Medicine. Open Science by Design: Realizing a Vision for 21st Century Research. The National Academies Press; 2018. [cited 2023 April 12]. https://nap.nationalacademies.org/catalog/25116/open-science-by-design-realizing-a-vision-for-21st-century.

  3. Nguyen L, Bellucci E, Nguyen LT. Electronic health records implementation: An evaluation of information system impact and contingency factors. Int J Med Inform. 2014;83:779–96. https://doi.org/10.1016/J.IJMEDINF.2014.06.011.

    Article  PubMed  Google Scholar 

  4. Dash S, Shakyawar SK, Sharma M, Kaushik S. Big data in healthcare: management, analysis and future prospects. J Big Data. 2019;6(1):1–25.

    Article  Google Scholar 

  5. Gokhale KM, Chandan JS, Toulis K, Gkoutos G, Tino P, Nirantharakumar K. Data extraction for epidemiological research (DExtER): a novel tool for automated clinical epidemiology studies. Eur J Epidemiol. 2021;36:165–78. https://doi.org/10.1007/S10654-020-00677-6/TABLES/6.

    Article  PubMed  Google Scholar 

  6. Community TTW. The Turing Way: A handbook for reproducible, ethical and collaborative research. Zenodo. 2022. https://doi.org/10.5281/zenodo.7625728.

  7. Paic A. Open science - enabling discovery in the digital age, OECD going digital toolkit notes, no. 13. Paris: OECD Publishing; 2012. https://doi.org/10.1787/81a9dcf0-en.

  8. Resnik DB. Openness versus secrecy in scientific research. Episteme. 2006;2(3):135–47.

    Article  Google Scholar 

  9. Curtis HJ, Goldacre B. OpenPrescribing: normalised data and software tool to research trends in English NHS primary care prescribing 1998–2016. BMJ Open. 2018;8(2):e019921.

    Article  PubMed  PubMed Central  Google Scholar 

  10. Walker AJ, Curtis HJ, Croker R, Bacon S, Goldacre B. Measuring the impact of an open web-based prescribing data analysis service on clinical practice: cohort study on NHS England data. J Med Internet Res. 2019;21(1):e10929.

    Article  PubMed  PubMed Central  Google Scholar 

  11. Enticott J, Johnson A, Teede H. Learning health systems using data to drive healthcare improvement and impact: a systematic review. BMC Health Serv Res. 2021;21:1–16.

    Article  Google Scholar 

  12. Spronk I, Korevaar JC, Poos R, Davids R, Hilderink H, Schellevis FG, et al. Calculating incidence rates and prevalence proportions: Not as simple as itseems. BMC Public Health. 2019;19:1–9. https://doi.org/10.1186/S12889-019-6820-3/TABLES/4.

    Article  Google Scholar 

  13. Ostropolets A, Li X, Makadia R, Rao G, Rijnbeek PR, Duarte-Salles T, et al. Factors Influencing Background Incidence Rate Calculation: Systematic Empirical Evaluation Across an International Network of Observational Databases. Front Pharmacol. 2022;13. https://doi.org/10.3389/fphar.2022.814198.

  14. Newman SC. Chapter 4 - Cohort Studies. In: Newman SC, editor. Epidemiologic Methods. Academic Press; 2023. pp. 35–51. https://doi.org/10.1016/B978-0-44-318780-3.00010-5.

  15. Jager KJ, Zoccali C, Kramar R, Dekker FW. Measuring disease occurrence. Kidney Int. 2007;72:412–5. https://doi.org/10.1038/SJ.KI.5002341.

    Article  CAS  PubMed  Google Scholar 

  16. Fajardo-Gutiérrez A. [Measurement in epidemiology: prevalence, incidence, risk, impact measures]. Rev Alerg Mex (Tecamachalco, Puebla, Mexico : 1993). 2017;64:109–120. https://doi.org/10.29262/RAM.V64I1.252.

  17. Noordzij M, Dekker FW, Zoccali C, Jager KJ. Measures of disease frequency: prevalence and incidence. Nephron Clin Pract. 2010;115(1):c17–20.

    Article  PubMed  Google Scholar 

  18. d’Elia A, Gabbay M, Rodgers S, Kierans C, Jones E, Durrani I, et al. Artificial intelligence and health inequities in primary care: a systematic scoping review and framework. Fam Med Community Health. 2022;10(Suppl 1):e001670.

  19. Rothman KJ, Boice JD. Epidemiologic Analysis with a Programmable Calculator. NIH publication ; no. 79-1649. U.S. Department of Health, Education, and Welfare, Public Health Service, National Institutes of Health; 1979.

  20. Knight M, Bunch K, Patel R, Shakespeare J, Kotnis R, Kenyon S, et al. Saving Lives, Improving Mothers’ Care Maternal, Newborn and Infant Clinical Outcome Review Programme. 2023. www.hqip.org.uk/national-programmes

  21. Cantwell R, Clutton-Brock T, Cooper G, Dawson A, Drife J, Garrod D, et al. Saving Mothers’ Lives: Reviewing maternal deaths to make motherhood safer: 2006-2008. The Eighth Report of the Confidential Enquiries into Maternal Deaths in the United Kingdom. BJOG Int J Obstet Gynaecol. 2011;118 Suppl 1:1–203. https://doi.org/10.1111/J.1471-0528.2010.02847.X.

  22. Mathur R, Bhaskaran K, Chaturvedi N, Leon DA, Staa TV, Grundy E, et al. Completeness and usability of ethnicity data in UK-based primary care and hospital databases. J Public Health (Oxford, England). 2014;36:684–92. https://doi.org/10.1093/PUBMED/FDT116.

    Article  Google Scholar 

  23. Breznau N, Rinke EM, Wuttke A, Nguyen HHV, Adem M, Adriaans J, et al. Observing many researchers using the same data and hypothesis reveals a hidden universe of uncertainty. Proc Natl Acad Sci. 2022;119(44):e2203150119. https://doi.org/10.1073/pnas.2203150119.

    Article  CAS  PubMed  PubMed Central  Google Scholar 

  24. Heywood BR, Morgan CL, Berni TR, Summers DR, Jones BI, Jenkins-Jones S, et al. Real-world evidence from the first online healthcare analytics platform-Livingstone. Validation of its descriptive epidemiology module. PLoS Digit Health. 2023;2:e0000310. https://doi.org/10.1371/JOURNAL.PDIG.0000310.

    Article  PubMed  PubMed Central  Google Scholar 

Download references

Acknowledgements

The authors would like to thank participants of the THINKing group workshop who contributed feedback to the design and user requirements of Analogy.

Funding

The authors declare that no funds, grants, or other support were received during the preparation of this manuscript.

Author information

Authors and Affiliations

Authors

Contributions

NC and JSC conceived the project. NC, BH, SC, IG, AA, RT, FC, KN, and JSC designed the methods. NC, BH, SC and AA created the software. NC, BH, SM, WPS, BT, JSC interpreted the results. NC, BH, IG, and AA wrote the first draft. All authors reviewed the manuscript.

Corresponding author

Correspondence to Neil Cockburn.

Ethics declarations

Ethics approval and consent to participate

CPRD obtains annual research ethics approval from the UK’s Health Research Authority Research Ethics Committee (East Midlands, Derby; reference no. 05/MRE04/87) to receive and supply patient data for public health research. Therefore, no additional ethics approval is required for observational studies using CPRD Aurum data for public health research, subject to individual research protocols meeting CPRD data governance requirements. The use of CPRD Aurum data for the study was approved by the CPRD Independent Scientific Advisory Committee (reference no. 22_001978).

Consent for publication

Not applicable

Competing interests

JSC, KN and KMG are co-directors of DExtER operating division which is part of the University of Birmingham. DExtER operating division supports the extraction and preparing of healthcare data to support epidemiological analyses such as those seen in this article. No other competing interests have been declared by authors.

Additional information

Publisher's Note

Springer Nature remains neutral with regard to jurisdictional claims in published maps and institutional affiliations.

Supplementary Information

12874_2024_2266_MOESM1_ESM.xlsx

Supplementary Material 1: S1. Ectopic Pregnancy Incident Phenome. SNOMED-CT codes used to identify ectopic pregnancy events.

12874_2024_2266_MOESM2_ESM.xlsx

Supplementary Material 2: S2. Ectopic Pregnancy Prevalent Phenome. SNOMED-CT codes used to identify ectopic pregnancy history.

12874_2024_2266_MOESM3_ESM.xlsx

Supplementary Material 3: S3. Baseline Characteristics. This table summarises characteristics of eligible women on entry to the ectopic pregnancy cohort extracted from CPRD Aurum database.

12874_2024_2266_MOESM4_ESM.xlsx

Supplementary Material 4: S4. Incidence of ectopic pregnancy overall and by subgroup. Time series of incidence of ectopic pregnancy in CPRD Aurum from 2006-2021, overall and by subgroups of Index of Multiple Deprivation, region, ethnicity and age category.

12874_2024_2266_MOESM5_ESM.xlsx

Supplementary Material 5: S5. Prevalence of ectopic pregnancy overall and by subgroup. Time series of prevalence of ectopic pregnancy in CPRD Aurum from 2006-2021, overall and by subgroups of Index of Multiple Deprivation, region, ethnicity and age category.

Rights and permissions

Open Access This article is licensed under a Creative Commons Attribution 4.0 International License, which permits use, sharing, adaptation, distribution and reproduction in any medium or format, as long as you give appropriate credit to the original author(s) and the source, provide a link to the Creative Commons licence, and indicate if changes were made. The images or other third party material in this article are included in the article's Creative Commons licence, unless indicated otherwise in a credit line to the material. If material is not included in the article's Creative Commons licence and your intended use is not permitted by statutory regulation or exceeds the permitted use, you will need to obtain permission directly from the copyright holder. To view a copy of this licence, visit http://creativecommons.org/licenses/by/4.0/. The Creative Commons Public Domain Dedication waiver (http://creativecommons.org/publicdomain/zero/1.0/) applies to the data made available in this article, unless otherwise stated in a credit line to the data.

Reprints and permissions

About this article

Check for updates. Verify currency and authenticity via CrossMark

Cite this article

Cockburn, N., Hammond, B., Gani, I. et al. Automating incidence and prevalence analysis in open cohorts. BMC Med Res Methodol 24, 144 (2024). https://doi.org/10.1186/s12874-024-02266-7

Download citation

  • Received:

  • Accepted:

  • Published:

  • DOI: https://doi.org/10.1186/s12874-024-02266-7