File tree Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Original file line number Diff line number Diff line change @@ -182,7 +182,6 @@ create view spc_intermediates.fraction_conforming as
182
182
group by sample_id)
183
183
184
184
select sample_id
185
- , cast(conformant_count as decimal ) / (conformant_count + non_conformant_count) as fraction_conforming
186
185
, cast(non_conformant_count as decimal ) / (conformant_count + non_conformant_count) as fraction_non_conforming
187
186
, conformant_count + non_conformant_count as sample_size
188
187
from counts;
@@ -192,7 +191,6 @@ create view spc_intermediates.fraction_conforming_sample_statistics as
192
191
select fc .sample_id
193
192
, s .window_id
194
193
, s .include_in_limit_calculations
195
- , avg (fraction_conforming) as mean_fraction_conforming
196
194
, avg (fraction_non_conforming) as mean_fraction_non_conforming
197
195
, sum (sample_size) as sample_size
198
196
from spc_intermediates .fraction_conforming fc
You can’t perform that action at this time.
0 commit comments