Education And COVID-19
Enrollment Data from UIS as of July 30th 2020
@kaggle.landlord_education_and_covid19
Enrollment Data from UIS as of July 30th 2020
@kaggle.landlord_education_and_covid19
Most governments around the world have temporarily closed educational institutions in an attempt to contain the spread of the COVID-19 pandemic.
These nationwide closures are impacting over 60% of the world’s student population. Several other countries have implemented localized closures impacting millions of additional learners.
In addition to closing schools, countries are exploring options for remote learning and use of other educational resources to mitigate the loss of learning. This involves capitalizing on work already started and addressing ever-present challenges like degrees of accessibility within communities to ensure equity in access.
So here is the data of the status of schools around the globe during COVID-19
The Dataset contains information about the closure of schools around the globe such as status and date of closing. It also contains the No. of students enrolled in various levels of school around the globe in various countries. Figures correspond to the number of learners enrolled at pre-primary, primary, secondary as well as at tertiary education levels.
Thanks to UNESCO Institute for Statistics(UIS) and World Bank for providing this data
CREATE TABLE education_covid19 (
"country_code" VARCHAR,
"country_name" VARCHAR,
"dt_extraction" VARCHAR,
"if_closed_due_to_covid19_when" VARCHAR,
"income_level" VARCHAR,
"region_name" VARCHAR,
"school_status" VARCHAR,
"year_pre" DOUBLE,
"year_prm" DOUBLE,
"year_sec" DOUBLE,
"year_ter" DOUBLE,
"latitude_generated" DOUBLE -- Latitude (generated),
"longitude_generated" DOUBLE -- Longitude (generated),
"enrollment" DOUBLE,
"se_pre_enrl" DOUBLE,
"se_prm_enrl" DOUBLE,
"se_sec_enrl" DOUBLE,
"se_ter_enrl" DOUBLE
);Anyone who has the link will be able to view this.