Attention To Each Country In The Guardian's Articles
@owid.guardian_mentions
@owid.guardian_mentions
Aggregate estimates on the number of entries that talk about each country and year.
The data was obtained by querying The Guardian's Open Platform.
An entry or page in The Guardian is considered to be about a certain country if that particular country is mentioned in the text. To this end, we have used a set of country name variations to ensure that we capture all the entries. Nonetheless, this is not a perfect method and some entries might be missed.
CREATE TABLE owid_avg_10y_1 (
"country" VARCHAR,
"year" INTEGER,
"num_pages_tags_10y_avg" FLOAT,
"num_pages_mentions_10y_avg" FLOAT,
"relative_pages_tags_10y_avg" FLOAT,
"relative_pages_tags_excluded_10y_avg" FLOAT,
"relative_pages_mentions_10y_avg" FLOAT,
"relative_pages_mentions_excluded_10y_avg" FLOAT,
"num_pages_tags_per_million_10y_avg" FLOAT,
"num_pages_mentions_per_million_10y_avg" FLOAT
);CREATE TABLE owid_avg_10y_2 (
"country" VARCHAR,
"year" INTEGER,
"num_pages_10y_avg" FLOAT,
"relative_pages_10y_avg" FLOAT,
"relative_pages_excluded_10y_avg" FLOAT,
"num_pages_per_million_10y_avg" FLOAT
);CREATE TABLE owid_guardian_mentions_1 (
"country" VARCHAR,
"year" INTEGER,
"num_pages_tags" UINTEGER,
"num_pages_mentions" UINTEGER,
"relative_pages_tags" FLOAT,
"relative_pages_tags_excluded" FLOAT,
"relative_pages_mentions" FLOAT,
"relative_pages_mentions_excluded" FLOAT,
"num_pages_tags_per_million" FLOAT,
"num_pages_mentions_per_million" FLOAT
);CREATE TABLE owid_guardian_mentions_2 (
"country" VARCHAR,
"year" INTEGER,
"num_pages" UINTEGER,
"relative_pages" FLOAT,
"relative_pages_excluded" FLOAT,
"num_pages_per_million" FLOAT
);Anyone who has the link will be able to view this.