Staff Demographic Data

Data files pertaining to staff demographics, credentials and teaching load.

cde.ca.gov-staff-1.1.2. Modified 2022-06-27T23:03:03

Resources | Packages | Documentation| Contacts| References| Data Dictionary

Resources

Documentation

License

The upstream data, from the California Department of Education, does not explicitly reference a license, so we assume it is in the public domain.

License

The source data, from the California Department of Education, does not explicitly reference a license, but since the top-level website for California indicates that data published on the State of California website is generally in the public domain, we assume it is in the public domain. Derived data included in this package is also in the public domain. Metadata in this package ( contained in the metadata.csv file ) is derived from metadata for the source package, and is also in the public domain.

Programs used for data transformation (contained in the notebooks directory), are Copyright 2021 Civic Knowledge, and are relased under the Creative Commons Attribution-ShareAlike 4.0 International License.

Contacts

Data Dictionary

staff_cred | staff_demo | staff_fte

staff_cred

Column NameData TypeDescription
academicyearinteger
recidinteger
credentialtypeinteger
authorizationtypeinteger
filecreateddate

staff_demo

Column NameData TypeDescription
academicyearinteger
recidinteger
districtcodeinteger
countynamestring
districtnamestring
gendercodestring
educationlevelstring
ethnicgroupinteger
yearsteachinginteger
yearsindistrictinteger
employmentstatuscodestring
fte_teachingnumber
fte_administrativenumber
fte_pupilservicesnumber
filecreateddate
agenumber

staff_fte

Column NameData TypeDescription
academicyearinteger
recidinteger
districtcodeinteger
schoolcodeinteger
countynamestring
districtnamestring
schoolnamestring
jobclassificationinteger
stafftypestring
ftenumber
filecreateddate

References

Urls used in the creation of this data package.

Packages

Accessing Data in Vanilla Pandas

import pandas as pd


staff_cred_df =  pd.read_csv('http://library.metatab.org/cde.ca.gov-staff-1.1.2/data/staff_cred.csv')
staff_demo_df =  pd.read_csv('http://library.metatab.org/cde.ca.gov-staff-1.1.2/data/staff_demo.csv')
staff_fte_df =  pd.read_csv('http://library.metatab.org/cde.ca.gov-staff-1.1.2/data/staff_fte.csv')

Accessing Package in Metapack

import metapack as mp
pkg = mp.open_package('http://library.metatab.org/cde.ca.gov-staff-1.1.2.csv')

# Create Dataframes
staff_cred_df = pkg.resource('staff_cred').dataframe()
staff_demo_df = pkg.resource('staff_demo').dataframe()
staff_fte_df = pkg.resource('staff_fte').dataframe()