You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Each year, both an enrollment per school site data set and a line item expenditure data set for measure G should be added to trackg.org. The enrollment data is used to calculate the $/student which is the only fair way to compare expenditures across school sites.
SELECTp.ncessch, latest.total_enrollment, latest.yearFROM (SELECTn.cds_code, SUM(n.enr_total) as total_enrollment, LATESTYYYY as year
FROM ousd_YYYY_state_enrollment n
GROUP BYn.cds_code) latest, osud_ca_public_schools_directory p
WHERElatest.cds_code=p.cdscodeUNIONSELECTe.ncessch, e.total_enrollment, e.yearFROM ousd_enrollment_LASTYYYY e
ousd_YYYY_state_enrollment = name of the new dataset LATESTYYYY = year of the new dataset in YYYY format. For example, the 2016-17 school year would be 2016 ousd_enrollment_LASTYYYY = name for the new, unified table with enrollment data for all years
The text was updated successfully, but these errors were encountered:
Each year, both an enrollment per school site data set and a line item expenditure data set for measure G should be added to trackg.org. The enrollment data is used to calculate the $/student which is the only fair way to compare expenditures across school sites.
Data source for enrollment: https://www.cde.ca.gov/ds/sd/sd/filesenr.asp
Query for processing/unifying the data:
ousd_YYYY_state_enrollment
= name of the new datasetLATESTYYYY
= year of the new dataset in YYYY format. For example, the 2016-17 school year would be2016
ousd_enrollment_LASTYYYY
= name for the new, unified table with enrollment data for all yearsThe text was updated successfully, but these errors were encountered: