Temperature-related mortality exposure-response functions for 854 cities in Europe
收藏资源简介:
This repository contains data to reconstruct the exposure-response functions (ERF) of temperature-related mortality by five 5 age groups in 854 cities in Europe. These ERFs have been derived in the study by Masselot et al. 2023, <em>Excess mortality attributed to heat and cold: a health impact assessment study in 854 cities in Europe</em>, The Lancet Planetary Health (https://doi.org/10.1016/S2542-5196(23)00023-2). An associated semi-replicable GitHub repository is available at https://github.com/PierreMasselot/Paper--2023--LancetPH--EUcityTRM to reproduce part of the analysis and the full results, as well as to provide technical details on the derivation of these ERFs. <strong>Extraction of the ERFs</strong> The ERFs are provided as coefficients of B-spline functions that can be used to reconstruct the ERFs, along with variance-covariance matrices and quantiles from location-specific temperature distributions. The parametrisation associated with these coefficients is a quadratic B-spline (degree 2), with knots located at the 10th, 75th and 90th percentiles of the temperature distribution. In R, the associated basis can be constructed using the <em>dlnm</em> package, with a temperature series <em>x</em>, as follows: <pre><code>library(dlnm) basis <- onebasis(x, fun = "bs", degree = 2, knots = quantile(x, c(.1, .75, .9)))</code></pre> The main files in this repo are the following: <em>coefs.csv</em>: The B-spline coefficients for each age group and city. <em>vcov.csv</em>: The variance-covariance matrix of the coefficients in each city and age group. It is provided here as the lower triangular part of the matrix with names indicating the position of each value (v[row][column]). In R, assuming <em>x</em> is a row of this file, the matrix can be reconstructed as follows. <pre><code>library(mixmeta) xpndMat(x)</code></pre> <em>coef_simu.csv</em>: 1000 simulations from the distribution of each city and age-specific coefficients. Useful to derive empirical confidence intervals for derived measures such as excess deaths or attributable fractions. <em>tmean_distribution.csv</em>: The city-specific temperature percentiles representing the distribution of the data derived from the ERA5-Land dataset. <em>city_results.csv</em>: A summary of the results from the health impact assessment reported in the analysis. The dataset includes several impact measures for each city and age group. <em>metadata.csv</em>: City-specific metadata used to create the ERFs and perform the health impact assessment. In addition, this repo includes the zip file <em>additional_data.zip</em> containing further data used to replicate the second stage of the analysis and the final health impact assessment. Please note that due to restrictive data-sharing agreements for the mortality series, only a part of the code is reproducible. See the associated GitHub repository for more details.



