Skip to content

ISPMBern/comix

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

54 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CoMix study

Description of the study

CoMix is a social contact survey that followed households across Europe over the course of the COVID-19 pandemic (Verelst et al., 2021). In Switzerland, we conducted a total of 24 survey waves from 22 January 2021 to 19 May 2022 (Figure 1) (Reichmuth et al., 2023). The market research company Ipsos MORI recruited a nationally representative sample of study participants using quota sampling based on age, gender, region, and work status through a combination of social media, web advertising, and email campaigns. The survey included adults aged 18 or above and parents (at least 18 years old) who completed the surveys on behalf of their children (<18 years old). For parents, quotas were set on region only.

Participants reported their social contacts made on the day prior to survey participation. A contact was defined as anyone who met the participant in person with whom at least a few words were exchanged or physical contact was made. Furthermore, the survey asks people about their awareness, attitudes and behaviors in response to COVID-19, and their vaccination status. From December 2021 until the end of the study, we included additional questions regarding attitudes towards vaccination that were developed together with the Federal Office of Public Health (FOPH). The design of the survey is largely based on the POLYMOD study (Mossong et al., 2008). Further details about the study design and methodology have been published elsewhere (Verelst et al., 2021; Wong et al., 2022).

Figure 1. Crude average number of contacts by survey wave and age group in Switzerland. Numbers represent all contacts and contacts were truncated at 50 per day. Data cover the time period from January 2021 to May 2022.

Data

The social contact data from the first 16 survey waves are available on Zenodo. Social contact data for all 24 survey waves will be made available on Zenodo and this repository.

DOI License: CC BY 4.0

Social contact matrices

To analyze the data and create social contact matrices, we recommend to install the R package socialmixr:

install.packages("socialmixr")

The data from the first 16 survey waves of the Swiss CoMix study can be downloaded using the function get_survey():

library(socialmixr)
comix <- get_survey("https://doi.org/10.5281/zenodo.6542656")

The contact_matrix() function extracts a contact matrix from survey data and contact matrices can be plotted using the function matrix_plot():

library(tidyverse)
comix$participants <- comix$participants %>% filter(panel %in% c("A", "C"))
m <- contact_matrix(comix,
                    age.limits = c(0, 5, 15, 30, 65),
                    symmetric = TRUE,
                    weigh.dayofweek = TRUE)         
par(mfrow = c(1, 2))
colfunc <- colorRampPalette(c("steelblue", "white"))
barplot(rowSums(m$matrix),
        names.arg = m$participants$age.group,
        col = colfunc(3)[2],
        xlab = "Age of participant (years)",
        ylab = "Number of contacts (per day)")
matrix_plot(m$matrix,
            color.palette = colfunc,
            xlab = "Age of participant (years)",
            ylab = "Age of contact (years)",
            main = NA)

Figure 2. Average number of contacts by age group and social contact matrix. Data include the first nine survey waves (panels A and C) from 22 January 2021 to 17 May 2021.

Reports

  1. CoMix social contact survey: Report for Switzerland rounds 1 to 16 (28 September 2021)
  2. Social contacts and attitudes towards vaccination during the COVID-19 pandemic: Insights from the CoMix study (13 September 2022)

Publications

The following publications include data from the CoMix survey in Switzerland:

  1. Social contact patterns following the COVID-19 pandemic: a snapshot of post-pandemic behaviour from the CoMix study. Jarvis CI, Coletti P, Backer JA, Munday JD, Faes C, Beutels P, Althaus CL, Low N, Wallinga J, Hens N, Edmunds WJ. medRxiv. 2023.08.29.23294767.
  2. Socio-demographic characteristics associated with COVID-19 vaccination uptake in Switzerland: longitudinal analysis of the CoMix study. Reichmuth ML, Heron L, Riou J, Moser A, Hauser A, Low N, Althaus CL. BMC Public Health. 2023 Aug 10;23(1):1523.
  3. The influence of COVID-19 risk perception and vaccination status on the number of social contacts across Europe: insights from the CoMix study. Wambua J, Loedy N, Jarvis CI, Wong KL, Faes C, Grah R, Prasse B, Sandmann F, Niehus R, Johnson H, Edmunds WJ, Beutels P, Hens N, Coletti P. BMC Public Health. 2023 Jul 13;23(1):1350.
  4. Social contact patterns during the COVID-19 pandemic in 21 European countries – evidence from a two-year study. Wong KL, Gimma A, Coletti P, CoMix Europe Working Group, Faes C, Beutels P, Hens N, Jaeger VK, Karch A, Johnson H, Edmunds WJ, Jarvis CI. BMC Infect Dis. 2023 Apr 26;23(1):268.
  5. Pregnancy during COVID-19: social contact patterns and vaccine coverage of pregnant women from CoMix in 19 European countries. Wong KLM, Gimma A, Paixao ES; CoMix Europe Working Group, Faes C, Beutels P, Hens N, Jarvis CI, Edmunds WJ. BMC Pregnancy Childbirth. 2022 Oct 8;22(1):757.

Other useful repositories

Team

Contact

If you have any questions regarding the Swiss CoMix survey, please send an email to christian.althaus@unibe.ch.

Acknowledgement

We acknowledge financial support from the European Union’s Horizon 2020 research and innovation programme - project EpiPose (No 101003688) and the Federal Office of Public Health (FOPH). We also like to thank the European Centre for Disease Prevention and Control (ECDC) and the CoMix Europe Working Group for setting up the collaborations across more than 20 European countries, and the partners at Ipsos MORI for running the survey.

About

Description and data of the social contact survey CoMix in Switzerland

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages