mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-08 23:18:18 -07:00
chore: set cutoff at 10 percent when printing out nil grades
This commit is contained in:
parent
40f6abe256
commit
cc3b320477
1 changed files with 1 additions and 1 deletions
|
|
@ -85,7 +85,7 @@ namespace :one_off do
|
|||
nil_count = SurveyItemResponse.where(school:, academic_year:, grade: nil,
|
||||
survey_item: SurveyItem.student_survey_items).count
|
||||
percentage = ((nil_count / total) * 100).round(1)
|
||||
puts "#{percentage}% nil grades for: #{school.name}, #{academic_year.range}" if percentage > 1
|
||||
puts "#{percentage}% nil grades for: #{school.name}, #{academic_year.range}" if percentage > 10
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue