sources
Data license: CC-BY
1 row where datasetId = 5781 sorted by id descending
This data as json, CSV (advanced)
Suggested facets: createdAt (date), updatedAt (date)
id ▲ | name | description | createdAt | updatedAt | datasetId | additionalInfo | link | dataPublishedBy |
---|---|---|---|---|---|---|---|---|
27069 | GLaMOR (2019) | { "link": "https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6815659/", "retrievedDate": "26/09/2022", "additionalInfo": "This study was part of the Global Pandemic Mortality Project II (GLaMOR) and was conducted by the Netherlands Institute for Health Service Research, in collaboration with the US National Institutes of Health and Centers for Disease Control, funded by the World Health Organization.\n\nThe authors used a two stage approach to estimate annual mortality from seasonal influenza between 2002 and 2011 (excluding the Swine flu pandemic season). In the first step, the authors used weekly or monthly mortality records and influenza surveillance data to estimate age-specific excess respiratory mortality caused by seasonal influenza for 31 countries. In the second step, they used country-specific indicators to extrapolate these estimates to remaining countries. They applied sensitivity analyses and estimated reliability coefficients to understand how sensitive these estimates were to different methodological decisions. \n\nThese estimates focus on respiratory-associated influenza mortality. This means they aim to include respiratory deaths where other complications may have been listed as the primary cause of death, but those deaths were actually caused by influenza. However, it would exclude deaths where patients did not have respiratory disease, even if their deaths were caused by influenza (such as through only cardiovascular complications).\n\nThe global number of people who die from other complications of the flu is unclear. Paget et al. (the authors of the GLaMOR project) state in their paper that their estimate \u201cdoes not cover cardiovascular deaths, something that could at least double the estimate of influenza-associated deaths.\u201d In recent meta-analyses, Behrouzi et al. found that influenza vaccination reduces the chances of major cardiovascular events (such as heart attacks and strokes) by around 34%, in clinical trials of the elderly. This suggests the death toll from other complications could be large. However, global estimates have not been made of these types of deaths from flu.\n\nSee: Paget, J., Danielle Iuliano, A., Taylor, R. J., Simonsen, L., Viboud, C., & Spreeuwenberg, P. (2022). Estimates of mortality associated with seasonal influenza for the European Union from the GLaMOR project. Vaccine, 40(9), 1361\u20131369. https://doi.org/10.1016/j.vaccine.2021.11.080\nBehrouzi, B., Bhatt, D. L., Cannon, C. P., Vardeny, O., Lee, D. S., Solomon, S. D., & Udell, J. A. (2022). Association of Influenza Vaccination With Cardiovascular Risk: A Meta-analysis. JAMA Network Open, 5(4), e228873. https://doi.org/10.1001/jamanetworkopen.2022.8873", "dataPublishedBy": "Paget J, Spreeuwenberg P, Charu V, Taylor RJ, Iuliano AD, Bresee J, Simonsen L, Viboud C; Global Seasonal Influenza-associated Mortality Collaborator Network and GLaMOR Collaborating Teams*. Global mortality associated with seasonal influenza epidemics: New burden estimates and predictors from the GLaMOR Project. J Glob Health. 2019 Dec;9(2):020421. doi: 10.7189/jogh.09.020421. PMID: 31673337; PMCID: PMC6815659.", "dataPublisherSource": "Mortality records, influenza surveillance data & country-specific indicators" } |
2022-09-26 08:49:29 | 2023-05-04 09:28:52 | Seasonal influenza mortality – GLaMOR (2019) 5781 | This study was part of the Global Pandemic Mortality Project II (GLaMOR) and was conducted by the Netherlands Institute for Health Service Research, in collaboration with the US National Institutes of Health and Centers for Disease Control, funded by the World Health Organization. The authors used a two stage approach to estimate annual mortality from seasonal influenza between 2002 and 2011 (excluding the Swine flu pandemic season). In the first step, the authors used weekly or monthly mortality records and influenza surveillance data to estimate age-specific excess respiratory mortality caused by seasonal influenza for 31 countries. In the second step, they used country-specific indicators to extrapolate these estimates to remaining countries. They applied sensitivity analyses and estimated reliability coefficients to understand how sensitive these estimates were to different methodological decisions. These estimates focus on respiratory-associated influenza mortality. This means they aim to include respiratory deaths where other complications may have been listed as the primary cause of death, but those deaths were actually caused by influenza. However, it would exclude deaths where patients did not have respiratory disease, even if their deaths were caused by influenza (such as through only cardiovascular complications). The global number of people who die from other complications of the flu is unclear. Paget et al. (the authors of the GLaMOR project) state in their paper that their estimate “does not cover cardiovascular deaths, something that could at least double the estimate of influenza-associated deaths.” In recent meta-analyses, Behrouzi et al. found that influenza vaccination reduces the chances of major cardiovascular events (such as heart attacks and strokes) by around 34%, in clinical trials of the elderly. This suggests the death toll from other complications could be large. However, global estimates have not been made of these types of deaths from flu. See: Paget, J., Danielle Iuliano, A., T… | https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6815659/ | Paget J, Spreeuwenberg P, Charu V, Taylor RJ, Iuliano AD, Bresee J, Simonsen L, Viboud C; Global Seasonal Influenza-associated Mortality Collaborator Network and GLaMOR Collaborating Teams*. Global mortality associated with seasonal influenza epidemics: New burden estimates and predictors from the GLaMOR Project. J Glob Health. 2019 Dec;9(2):020421. doi: 10.7189/jogh.09.020421. PMID: 31673337; PMCID: PMC6815659. |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE "sources" ( "id" INTEGER PRIMARY KEY AUTOINCREMENT, "name" VARCHAR(512) NULL , "description" TEXT NOT NULL , "createdAt" DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP , "updatedAt" DATETIME NULL , "datasetId" INTEGER NULL, additionalInfo TEXT GENERATED ALWAYS as (JSON_EXTRACT(description, '$.additionalInfo')) VIRTUAL, link TEXT GENERATED ALWAYS as (JSON_EXTRACT(description, '$.link')) VIRTUAL, dataPublishedBy TEXT GENERATED ALWAYS as (JSON_EXTRACT(description, '$.dataPublishedBy')) VIRTUAL, FOREIGN KEY("datasetId") REFERENCES "datasets" ("id") ON UPDATE RESTRICT ON DELETE RESTRICT ); CREATE INDEX "sources_datasetId" ON "sources" ("datasetId");