sources
Data license: CC-BY
2 rows where datasetId = 5923 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 |
---|---|---|---|---|---|---|---|---|
29556 | Data compiled from multiple sources by Comin & Hobijn (2004) | { "link": "https://www.nber.org/research/data/historical-cross-country-technology-adoption-hccta-dataset", "retrievedDate": "2023-03-16", "additionalInfo": "\nThe Historical Cross Country Technology Adoption Dataset (HCCTAD) is a dataset collected by Diego Comin (NYU) and Bart Hobijn (Federal Reserve Bank of New York), to allow for the analysis of the adoption patterns of some of the major technologies introduced in the past 250 years across the World\u2019s leading industrialized economies.\n", "dataPublishedBy": "Comin, D. and Hohijn B., \"Cross-Country Technological Adoption: Making the Theories Face the Facts\". Journal of Monetary Economics, January 2004, pp. 39-83." } |
2023-12-14 12:03:00 | 2024-07-08 16:23:12 | Historical Cross Country Technology Adoption Dataset (Comin & Hobijn, 2004) 5923 | The Historical Cross Country Technology Adoption Dataset (HCCTAD) is a dataset collected by Diego Comin (NYU) and Bart Hobijn (Federal Reserve Bank of New York), to allow for the analysis of the adoption patterns of some of the major technologies introduced in the past 250 years across the World’s leading industrialized economies. | https://www.nber.org/research/data/historical-cross-country-technology-adoption-hccta-dataset | Comin, D. and Hohijn B., "Cross-Country Technological Adoption: Making the Theories Face the Facts". Journal of Monetary Economics, January 2004, pp. 39-83. |
27441 | Data compiled from multiple sources by Comin & Hobijn (2004) | { "link": "https://www.nber.org/research/data/historical-cross-country-technology-adoption-hccta-dataset", "retrievedDate": "2023-03-16", "additionalInfo": "The Historical Cross Country Technology Adoption Dataset (HCCTAD) is a dataset collected by Diego Comin (NYU) and Bart Hobijn (Federal Reserve Bank of New York), to allow for the analysis of the adoption patterns of some of the major technologies introduced in the past 250 years across the World\u2019s leading industrialized economies.\n", "dataPublishedBy": "Comin, D. and Hohijn B., \"Cross-Country Technological Adoption: Making the Theories Face the Facts\". Journal of Monetary Economics, January 2004, pp. 39-83." } |
2023-03-16 16:51:00 | 2024-07-08 16:23:12 | Historical Cross Country Technology Adoption Dataset (Comin & Hobijn, 2004) 5923 | The Historical Cross Country Technology Adoption Dataset (HCCTAD) is a dataset collected by Diego Comin (NYU) and Bart Hobijn (Federal Reserve Bank of New York), to allow for the analysis of the adoption patterns of some of the major technologies introduced in the past 250 years across the World’s leading industrialized economies. | https://www.nber.org/research/data/historical-cross-country-technology-adoption-hccta-dataset | Comin, D. and Hohijn B., "Cross-Country Technological Adoption: Making the Theories Face the Facts". Journal of Monetary Economics, January 2004, pp. 39-83. |
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");