PISA Database
@owid.pisa
@owid.pisa
The Programme for International Student Assessment (PISA) by OECD provides a comprehensive and rigorous international assessment of the knowledge and skills of 15-year-old students around the world. The assessment covers areas such as mathematics, science, and reading. PISA aims to provide comparable data that will enable countries to improve their education policies and outcomes. Data is collected every three years from a globally diverse cohort of students.
The dataset contains scores, demographic information, and various indicators related to education systems of participating countries.
CREATE TABLE owid_pisa_math_boys_girls (
"country" VARCHAR,
"year" INTEGER,
"pisa_math_average_boys" FLOAT,
"pisa_math_average_girls" FLOAT,
"pisa_science_average_boys" FLOAT,
"pisa_science_average_girls" FLOAT,
"pisa_reading_average_boys" FLOAT,
"pisa_reading_average_girls" FLOAT,
"pisa_math_all_average" FLOAT,
"pisa_science_all_average" FLOAT,
"pisa_reading_all_average" FLOAT,
"reading_lower_bound" FLOAT,
"reading_upper_bound" FLOAT,
"science_lower_bound" FLOAT,
"science_upper_bound" FLOAT,
"math_lower_bound" FLOAT,
"math_upper_bound" FLOAT
);Anyone who has the link will be able to view this.