Persistence Prediction Queries
Average Persistence Score by Origin
This query calculates the average persistence prediction score for Domestic, International, and Unknown students. It uses the latest prediction for each student and only includes students with active enrollments.
Average Persistence or Persistence Score by GPA Band
This query calculates the average persistence prediction by GPA Band and categorizes the persistence likelihood into five levels: Very High, High, Moderate, Low, and Very Low.
It also provides the count of students in each GPA Band used for the aggregated predictions.
You can modify the GPA ranges in the gpa_data
CASE statement
as per your requirements.
Average Persistence Score by Term
This query calculates the average persistence score for each term. It also includes the average score by course. Uncomment the WHERE clause filters to limit the results to specific campuses, institutions, departments, subjects, or catalog numbers as needed.
Dropped Students with Low Persistence Scores
This query aims to provide a list of students who have recently dropped at least one course in the active term and have a low persistence score. We are considering low prediction scores with values below 0.5. Users are able to adjust the threshold as desired.
High GPA Students with low persistence scores
-- This query identifies students who are currently enrolled (active) and have: High GPA (3.0 or higher) Low persistence score (below 50%)
Percentile Binned Students by Persistence Score
This query categorizes active students into 10 percentile groups (deciles) based on their latest persistence score prediction.
Notes:
- Percentiles are based only on currently active students.
- The latest persistence score is used for each student.
Student Persistence Predictions
This query fetches all historical persistence prediction scores, the institution ID, and the date the score was generated for desired <STUDENT_ID>
.
Student Persistence Prediction by Age
This query calculates the average prediction score of students across different age buckets and counts the number of students in each bucket, based on the most recent persistence score date.
Student Persistence Prediction by Location
This query calculates the Student Persistence Prediction by Location. We will calculate the Persistence Prediction score by city, state, state_flag and zip_code
You can specify an State in which will generate a flag that will specify if the student is In State or Out of State
Besides that you can change the final select statement and get more details about the persistence prediction scores of students from a specific city, state, zip_code or in_state group.
Student Persistence Score Shift
This query returns the latest persistence score for each student and career (academic level), and calculates the one day and one week shift in this score so that the customer can identify students whose score has changed recently. This query can be adapted to calculate score shifts other than one day or week.
The query also displays the Civitas defined bucket for the student's latest persistence score using the default ranges for these buckets: Very Low, Low, Moderate, High, Very High