mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-08 23:18:18 -07:00
chore: parse disaggregation header values as 'unknown' since they are errors in the pivot table logic
This commit is contained in:
parent
2bf22758c1
commit
499215f9b9
2 changed files with 2 additions and 2 deletions
|
|
@ -14,7 +14,7 @@ class Income < ApplicationRecord
|
|||
"Economically Disadvantaged - Y"
|
||||
in /Not\s*Eligible|false|0/i
|
||||
"Economically Disadvantaged - N"
|
||||
in %r{^#*N/*A$|Unknown}i
|
||||
in %r{^#*N/*A$|Unknown|Income}i
|
||||
"Unknown"
|
||||
else
|
||||
puts "************************************"
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ class Sped < ApplicationRecord
|
|||
"Special Education"
|
||||
in /^I$|exited|0|^Not\s*Special\s*Education$|Does\s*not\s*apply|Referred|Ineligible/i
|
||||
"Not Special Education"
|
||||
in %r{^#*N/*A$|Unknown|SpecialEdStatus}i
|
||||
in %r{^#*N/*A$|Unknown|SpecialEdStatus|SPED}i
|
||||
"Unknown"
|
||||
else
|
||||
puts "************************************"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue