mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -08:00
18 lines
448 B
Ruby
18 lines
448 B
Ruby
module Analyze
|
|
module Graph
|
|
module Column
|
|
module IncomeColumn
|
|
module IncomeCount
|
|
def type
|
|
:student
|
|
end
|
|
|
|
def n_size(academic_year)
|
|
SurveyItemResponse.where(income:, survey_item: measure.student_survey_items, school:, grade: grades,
|
|
academic_year:).select(:response_id).distinct.count
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|