sources
Data license: CC-BY
1 row where datasetId = 5208 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 |
---|---|---|---|---|---|---|---|---|
17938 | United States Elections Project | { "link": "http://www.electproject.org/home/voter-turnout/demographics", "retrievedDate": "October 28, 2020", "additionalInfo": "The United States Election Project produces estimates of voter turnout among voting-age citizens in the United States for each presidential and midterm election since 1986 using survey data from the Current Population Survey (CPS) November Voting and Registration Supplement.\n\nThe CPS November Voting and Registration Supplement asks respondents whether they voted in the most recent election. The CPS surveys non-institutional households, which excludes military barracks, dorms, and prisons.\n\nNon-responses are excluded from the voter turnout estimates. To correct for over-reporting of voter turnout, the United States Election Project re-weights survey responses using the method proposed by Hur and Achen (2013). The survey weights are available at http://www.electproject.org/home/voter-turnout/cps-methodology.\n\nCitations:\nHur, A., & Achen, C. H. (2013). Coding voter turnout responses in the Current Population Survey. Public Opinion Quarterly, 77(4), 985-993.", "dataPublishedBy": "United States Election Project", "dataPublisherSource": "United States Current Population Survey, November Voting and Registration Supplement" } |
2020-10-29 02:58:51 | 2020-10-29 02:58:51 | United States Voter Turnout Demographics in Presidential Elections - United States Elections Project 5208 | The United States Election Project produces estimates of voter turnout among voting-age citizens in the United States for each presidential and midterm election since 1986 using survey data from the Current Population Survey (CPS) November Voting and Registration Supplement. The CPS November Voting and Registration Supplement asks respondents whether they voted in the most recent election. The CPS surveys non-institutional households, which excludes military barracks, dorms, and prisons. Non-responses are excluded from the voter turnout estimates. To correct for over-reporting of voter turnout, the United States Election Project re-weights survey responses using the method proposed by Hur and Achen (2013). The survey weights are available at http://www.electproject.org/home/voter-turnout/cps-methodology. Citations: Hur, A., & Achen, C. H. (2013). Coding voter turnout responses in the Current Population Survey. Public Opinion Quarterly, 77(4), 985-993. | http://www.electproject.org/home/voter-turnout/demographics | United States Election Project |
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");