Skip to contents

Student mobility data from the Maryland State Department of Education (MSDE). The original CSV data files downloaded from MSDE are available in the data-raw/extdata folder on the GitHub repo for the package. Mobility refers to the movement of students from one school to another during the school year. Three types of mobility are calculated using student entrants and student withdrawals: Total student mobility, entry mobility, and exit mobility. Student mobility is the percentage of students that either enter or withdraw from a school during the school year. To calculate student mobility, the number of entrants is added to the number of withdrawals and that sum is divided by the average daily student enrollment.

Usage

msde_student_mobility

Format

A data frame with 33,378 rows and 14 variables:

year

School or academic year for enrollment count, e.g. 2019 data is from the start of the 2019-2020 school year.

school_number

School number as integer (0 indicates all schools)

school_name

School name

school_type

School type (e.g. Elementary, Middle, High)

mobile_pct

Student total mobility rate

entry_pct

Student entry mobility rate

exit_pct

Student exit mobility rate

mobile_count

Sudent entry and exit count

entry_count

Student entry count

exit_count

Student exit count

avg_enrolled_count

Average daily student enrollment.

date_created

Date record created.

lss_number

Local school system (LSS) number as integer. NA is used in place of a LSS number for statewide data. Older LEA numbers are combined with LSS numbers in this dataset.

lss_name

Local school system (LSS) names (typically same as county name). "State" is used in place of a LSS name for statewide data. Older LEA names are combined with LSS names in this dataset.