mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-13 01:10:39 -07:00
18 lines
439 B
Ruby
18 lines
439 B
Ruby
module Analyze
|
|
module Graph
|
|
module Column
|
|
module EllColumn
|
|
module EllCount
|
|
def type
|
|
:student
|
|
end
|
|
|
|
def n_size(academic_year)
|
|
SurveyItemResponse.where(ell:, survey_item: measure.student_survey_items, school:, grade: grades,
|
|
academic_year:).select(:response_id).distinct.count
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|