diff --git a/NEWS.md b/NEWS.md index 79ca463..38fd158 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,6 +1,7 @@ # bcpss (development version) - Expand README with new example referencing `{marylandedu}` package (2023-11-28) +- Remove duplicative `baltimore_enrollment` dataset (2023-11-28) # bcpss 0.2.0 @@ -27,6 +28,6 @@ Versioning for this package has been and may continue to be somewhat uneven. Her - Switch school_type variable name to management_type - Add current spatial data for BCPS elementary school zones - Add current spatial data for BCPS programs -- Rename parent_school_survey_SY1819 to parent_survey_SY1819 +- Rename `parent_school_survey_SY1819` to `parent_survey_SY1819` diff --git a/R/data.R b/R/data.R index 271dd5f..c363b11 100755 --- a/R/data.R +++ b/R/data.R @@ -728,40 +728,6 @@ #' @source [Baltimore City Department of Planning - FeatureLayer](https://services1.arcgis.com/43Lm3JYE3nM91DAF/ArcGIS/rest/services/Surplus_Schools/FeatureServer/0) "bcps_surplus_schools" -#' Baltimore City Public School Enrollment (SY 2003-2022) -#' -#' This data is a subset of [mapmaryland::msde_enrollment] where `lss_name` is -#' "Baltimore City". This data does not include the SEED School of Maryland -#' which is located within Baltimore City. It is recommended you use this data -#' instead of [enrollment_msde_SY0919] as the name of this object will remain -#' the same when current enrollment data is appended on an annual basis. -#' -#' @format A data frame with 31,618 rows and 10 variables: -#' \describe{ -#' \item{`year`}{School or academic year for enrollment count, e.g. -#' 2019 data is from the start of the 2019-2020 school year.} -#' \item{`school_number`}{School number as integer (0 indicates all -#' schools)} -#' \item{`school_name`}{School name} -#' \item{`enrolled_count`}{Number of students registered to attend the -#' school at the start of the year in the grade or grade range as integer. -#' Typically enrollment count is as of September 30.} -#' \item{`grade`}{Grades from Prekindergarden (PK) to Grade 12} -#' \item{`grade_range`}{all elementary school Grades, all middle school -#' grades, all high school grades, or all grades (total enrollment). May also -#' be used as a label for grade.} -#' \item{`race`}{Race/ethnicity. Enrollment by race/ethnicity is only -#' available across all grades for years since 2020. "All" is used for data -#' prior to 2020.} -#' \item{`county`}{County name} -#' \item{`lss_number`}{Local school system number (previously known as a -#' LEA Number) as an integer. `NA` values are used for statewide data.} -#' \item{`lss_name`}{Local school system name (previously known as a LEA -#' Name). A value of "State" is used for statewide data.} -#' } -#' @source [MSDE Data Downloads](https://reportcard.msde.maryland.gov/Graphs/#/DataDownloads/datadownload) -"baltimore_enrollment" - #' BCPSS Attendance Data (SY 2003-2022) #' #' This data is a subset of the [marylandedu::msde_attendance] dataset. @@ -816,7 +782,12 @@ #' BCPSS Enrollment Data (SY 2003-2023) #' -#' This data is a subset of the [marylandedu::msde_enrollment] dataset. +#' This data is a subset of the [marylandedu::msde_enrollment] dataset include +#' all data where the `lss_name` is "Baltimore City". This data does not include +#' the SEED School of Maryland which is located within Baltimore City. It is +#' recommended you use this data instead of [enrollment_msde_SY0919] as the name +#' of this object will remain the same when current enrollment data is appended +#' on an annual basis. #' #' @format A data frame with 33,800 rows and 10 variables: #' \describe{ diff --git a/_pkgdown.yml b/_pkgdown.yml index 4eb4f0d..c102722 100644 --- a/_pkgdown.yml +++ b/_pkgdown.yml @@ -2,25 +2,24 @@ url: https://elipousson.github.io/bcpss/ template: bootstrap: 5 reference: -- title: Survey, enrollment, and demographic data from Baltimore City Public Schools - contents: - - starts_with("enrollment_demographics") - - starts_with("parent") - - starts_with("educator") - - starts_with("student") - title: Enrollment, attendance, and other data from Maryland State Department of Education (MSDE) and BCPSS contents: - - starts_with("bcpss") - - '`baltimore_enrollment`' + - starts_with("bcpss_") - '`enrollment_msde_SY0919`' - '`attendance_msde_SY0919`' - '`accountability_SY1920`' - '`nces_school_directory_SY1920`' -- title: Kindergarten Readiness Assessment (KRA) - contents: - - '`kra_results_SY1920`' - title: Spatial data contents: - starts_with("bcps_programs") - starts_with("bcps_es_zones") - '`bcps_surplus_schools`' +- title: Survey, enrollment, and demographic data from Baltimore City Public Schools + contents: + - starts_with("enrollment_demographics") + - starts_with("parent") + - starts_with("educator") + - starts_with("student") +- title: Kindergarten Readiness Assessment (KRA) + contents: + - '`kra_results_SY1920`' diff --git a/data/baltimore_enrollment.rda b/data/baltimore_enrollment.rda deleted file mode 100644 index de767ac..0000000 Binary files a/data/baltimore_enrollment.rda and /dev/null differ