sources
Data license: CC-BY
1 row where datasetId = 2830 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 |
---|---|---|---|---|---|---|---|---|
15561 | Fouquin and Hugot (CEPII 2016) | { "link": "http://www.cepii.fr/cepii/en/bdd_modele/presentation.asp?id=32", "retrievedDate": "19/03/2018", "additionalInfo": "To construct this chart we started from a dataset with dyadic trade estimates. For each year we took all country pairs with data and classified them as follows: \"Non-trading\" (pairs in which countries do not trade with one another); \"Bilateral\" (pairs in which both countries export to one another); and \"Unilateral\" (pairs in which only one country exports to the other).", "dataPublishedBy": "Michel Fouquin & Jules Hugot , 2016. \"Two Centuries of Bilateral Trade and Gravity Data: 1827-2014,\" CEPII Working Paper 2016- 14 , May 2016 , CEPII ", "dataPublisherSource": "IMF Direction of Trade Statistics data set, manuscripts" } |
2018-07-12 10:20:36 | 2018-07-13 12:35:54 | Distribution of bilateral and unilateral trade partnerships - Fouquin and Hugot (CEPII 2016) 2830 | To construct this chart we started from a dataset with dyadic trade estimates. For each year we took all country pairs with data and classified them as follows: "Non-trading" (pairs in which countries do not trade with one another); "Bilateral" (pairs in which both countries export to one another); and "Unilateral" (pairs in which only one country exports to the other). | http://www.cepii.fr/cepii/en/bdd_modele/presentation.asp?id=32 | Michel Fouquin & Jules Hugot , 2016. "Two Centuries of Bilateral Trade and Gravity Data: 1827-2014," CEPII Working Paper 2016- 14 , May 2016 , CEPII |
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");