sources
Data license: CC-BY
1 row where datasetId = 5202 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 |
---|---|---|---|---|---|---|---|---|
17932 | Imperial College London YouGov Covid 19 Behaviour Tracker Data Hub – Last updated 23 November 2022 | { "link": "https://github.com/YouGov-Data/covid-19-tracker", "retrievedDate": "January 14, 2021", "additionalInfo": "YouGov has partnered with the Institute of Global Health Innovation (IGHI) at Imperial College London to gather global insights on people\u2019s behaviors in response to COVID-19. The research will cover 29 countries, interviewing around 21,000 people each week.\n\nIt is designed to provide behavioral analysis on how different populations are responding to the pandemic, helping public health bodies in their efforts to limit the impact of the disease. Anonymized respondent level data will be available for all public health and academic institutions globally.\n\nThe questions in the survey, led by IGHI, cover data on testing, symptoms, self-isolating in response to symptoms and the ability and willingness to self-isolate if needed. It also looks at behaviors, including going outdoors, working outside the home, contact with others, handwashing and the extent of compliance with 20 common preventative measures.", "dataPublishedBy": "Imperial College London, YouGov", "dataPublisherSource": "Imperial College London YouGov Covid 19 Behaviour Tracker Data Hub" } |
2020-10-21 13:13:45 | 2020-10-21 13:13:45 | YouGov-Imperial COVID-19 Behavior Tracker 5202 | YouGov has partnered with the Institute of Global Health Innovation (IGHI) at Imperial College London to gather global insights on people’s behaviors in response to COVID-19. The research will cover 29 countries, interviewing around 21,000 people each week. It is designed to provide behavioral analysis on how different populations are responding to the pandemic, helping public health bodies in their efforts to limit the impact of the disease. Anonymized respondent level data will be available for all public health and academic institutions globally. The questions in the survey, led by IGHI, cover data on testing, symptoms, self-isolating in response to symptoms and the ability and willingness to self-isolate if needed. It also looks at behaviors, including going outdoors, working outside the home, contact with others, handwashing and the extent of compliance with 20 common preventative measures. | https://github.com/YouGov-Data/covid-19-tracker | Imperial College London, YouGov |
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");