mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 13:38:18 -08:00
chore: parse disaggregation header values as 'unknown' since they are errors in the pivot table logic
This commit is contained in:
parent
c2c8ce3b8d
commit
28ac95d81d
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