Difficulty
Your best score
N/A
You have been hired by the City of Austin, Texas to calculate the Relative Performance Score of educational institutions in the city. You have two files available that contain the following columns:
| Column | Description |
|---|---|
| SampleID | Unique identifier for each observation |
| County | The county where the campus/district is located |
| School Type | School classification by level (Elementary, Middle School, etc.) |
| Alternative Education Accountability | Modified standards for schools with at-risk students |
| Charter | Public school administered by an independent board, not by a district (Yes/No) |
| Number of Students | Total number of enrolled students |
| % Economically Disadvantaged | Percentage of students eligible for free or reduced-price meals |
| % EB/EL Students | Emergent bilingual students / students learning English as a second language |
| Overall Rating | Final weighted score (70% best of Domain 1 or 2 + 30% Domain 3) |
| Student Achievement Rating | Performance on STAAR tests, graduation rates, and CCMR scores |
| School Progress Rating | Student progress or relative performance compared to peers |
| Academic Growth Rating | Individual student improvement on STAAR tests |
| Closing the Gaps Rating | Performance of student subgroups compared to established targets |
| Relative Performance Rating | School performance compared to schools with similar poverty levels (target column) |
Note: The Relative Performance Rating column is available only in the training data (
train.csv).
Calculate how many elementary schools exist in Anderson County in the test data (test.csv).
The result must be an integer.
What is the most frequent rating in the Academic Growth Rating column in the test data (test.csv)?
The result must be a string: "A", "B", "C", "D" or "F".
Build a prediction model capable of estimating Relative Performance Rating for all educational institutions in the test data.
Evaluation is done using accuracy:
accuracy = number_of_correct_predictions / total_number_of_predictions
The submission file must be in CSV format, with the following columns:
subtaskID – subtask indexdatapointID – unique identifier from the datasetanswer – your answer or predictionsubtaskID,datapointID,answer 1,1,0 2,2,F 3,100,C 3,101,A 3,102,B ...Note:
For Subtask 1 and Subtask 2, thedatapointIDvalue must be 1 and 2, respectively.
City of Austin – data.austintexas.gov
Emergency Medical Services Department