mirror of
https://github.com/edcommonwealth/Dashboard.git
synced 2026-03-07 21:38:14 -08:00
18 lines
448 B
Ruby
18 lines
448 B
Ruby
module Analyze
|
|
module Graph
|
|
module Column
|
|
module Grade
|
|
module GradeCount
|
|
def type
|
|
:student
|
|
end
|
|
|
|
def n_size(year_index)
|
|
SurveyItemResponse.where(grade:, survey_item: measure.student_survey_items, school:,
|
|
academic_year: academic_years[year_index]).select(:response_id).distinct.count
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|