You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
475 B
19 lines
475 B
module Analyze
|
|
module Graph
|
|
module Column
|
|
module EllColumn
|
|
module EllCount
|
|
def type
|
|
:student
|
|
end
|
|
|
|
def n_size(year_index)
|
|
SurveyItemResponse.where(ell:, survey_item: measure.student_survey_items, school:, grade: grades(year_index),
|
|
academic_year: academic_years[year_index]).select(:response_id).distinct.count
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|