UN General Assembly Votes, 1946-2015
Votes by member states on individual resolutions and specific issues
@kaggle.unitednations_general_assembly
Votes by member states on individual resolutions and specific issues
@kaggle.unitednations_general_assembly
CREATE TABLE resolutions (
"assembly_session" BIGINT,
"vote_id" BIGINT,
"resolution" VARCHAR,
"amendment" DOUBLE,
"vote_date" TIMESTAMP,
"significant_vote" BIGINT,
"yes_votes" BIGINT,
"no_votes" BIGINT,
"abstain" BIGINT,
"colonization" DOUBLE,
"human_rights" DOUBLE,
"israel_palestine" DOUBLE,
"disarmament" DOUBLE,
"nuclear_weapons" DOUBLE,
"economic_development" DOUBLE
);
CREATE TABLE states (
"year" DOUBLE,
"assembly_session" DOUBLE,
"state_code" BIGINT,
"state_name" VARCHAR,
"all_votes" DOUBLE,
"yes_votes" DOUBLE,
"no_votes" DOUBLE,
"abstain" DOUBLE,
"idealpoint_estimate" DOUBLE,
"affinityscore_usa" DOUBLE,
"affinityscore_russia" DOUBLE,
"affinityscore_china" DOUBLE,
"affinityscore_india" DOUBLE,
"affinityscore_brazil" DOUBLE,
"affinityscore_israel" DOUBLE
);
CREATE TABLE votes (
"assembly_session" BIGINT,
"vote_id" BIGINT,
"resolution" VARCHAR,
"state_code" BIGINT,
"state_name" VARCHAR,
"member" BIGINT,
"vote" BIGINT
);
Anyone who has the link will be able to view this.