sources
Data license: CC-BY
1 row where datasetId = 4243 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 |
---|---|---|---|---|---|---|---|---|
17071 | Bachmann and Baumgarten (2013) | { "link": "https://link.springer.com/content/pdf/10.1186%2F2193-9012-2-22.pdf (Table 5)", "retrievedDate": "30/10/19", "additionalInfo": "The EU-LFS survey question(s) asked to determine the job search methods used by respondents vary country to country. For exact question(s) asked by country, see the <a href=\"https://ec.europa.eu/eurostat/statistics-explained/index.php/EU_labour_force_survey_-_methodology#Core_questionnaires\">EU-LFS core questionnaires documentation</a>. \n\nThe authors note the \"annual dataset [...] consists of yearly cross-sections. This means it is not possible to follow individuals over time.\"\n\nNote: The method \u201cTest, interview, or examination\u201d is not surveyed in the UK, therefore it is not strictly comparable across countries. \n\n", "dataPublishedBy": "Bachmann and Baumgarten: How do the unemployed search for a job? \u2013 Evidence from the EU Labour Force Survey. IZA Journal of European Labor Studies 2013, 2:22", "dataPublisherSource": "European Union Labour Force Survey (EU-LFS), years 2006-2008" } |
2019-10-30 23:16:57 | 2019-10-30 23:16:57 | Proportion of unemployed using specific search methods - Bachmann and Baumgarten (2013) 4243 | The EU-LFS survey question(s) asked to determine the job search methods used by respondents vary country to country. For exact question(s) asked by country, see the <a href="https://ec.europa.eu/eurostat/statistics-explained/index.php/EU_labour_force_survey_-_methodology#Core_questionnaires">EU-LFS core questionnaires documentation</a>. The authors note the "annual dataset [...] consists of yearly cross-sections. This means it is not possible to follow individuals over time." Note: The method “Test, interview, or examination” is not surveyed in the UK, therefore it is not strictly comparable across countries. | https://link.springer.com/content/pdf/10.1186%2F2193-9012-2-22.pdf (Table 5) | Bachmann and Baumgarten: How do the unemployed search for a job? – Evidence from the EU Labour Force Survey. IZA Journal of European Labor Studies 2013, 2:22 |
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");