Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add hs GPA bands #2414

Merged
merged 1 commit into from
Jan 29, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,14 @@ with
r.contact_kipp_ms_graduate,
r.contact_kipp_hs_graduate,
r.contact_kipp_hs_class,
r.contact_college_match_display_gpa,
r.contact_kipp_region_name,
r.contact_college_match_display_gpa as college_match_display_gpa,
r.contact_kipp_region_name as kipp_region_name,
r.contact_description,
r.contact_gender,
r.contact_ethnicity,
r.contact_expected_college_graduation as expected_college_grad_date,
r.contact_actual_college_graduation_date as actual_college_grad_date,
r.contact_current_kipp_student as current_kipp_student,

e.pursuing_degree_type,
e.type,
Expand All @@ -86,6 +87,19 @@ with
p.is_basta,
p.is_braven,

case
when r.contact_college_match_display_gpa >= 3.50
then '3.50+'
when r.contact_college_match_display_gpa >= 3.00
then '3.00-3.49'
when r.contact_college_match_display_gpa >= 2.50
then '2.50-2.99'
when r.contact_college_match_display_gpa >= 2.00
then '2.00-2.50'
when r.contact_college_match_display_gpa < 2.00
then '<2.00'
end as hs_gpa_bands,

lower(r.contact_email) as sf_email,
lower(r.contact_secondary_email) as sf_secondary_email,
extract(
Expand Down