Skip to content
Snippets Groups Projects
Commit 7f2865a8 authored by Eva Schiffer's avatar Eva Schiffer
Browse files

only show the % within epsilon if we had any epsilons defined

parent 3c01b1df
No related branches found
No related tags found
No related merge requests found
......@@ -129,7 +129,9 @@ Copyright (c) 2011 University of Wisconsin SSEC. All rights reserved.
<th>Epsilon<br>Percent</th>
% endif
<th>R-squared<br>Correlation Coeff.</th>
<th>% within<br>Epsilon<sup>†</sup></th>
% if numEpsilon >= 1 :
<th>% within<br>Epsilon<sup>†</sup></th>
% endif
<th>% Matching<br>in Finiteness</th>
## only include the status column if we did any comparisons
% if allNone is not None :
......@@ -192,13 +194,15 @@ Copyright (c) 2011 University of Wisconsin SSEC. All rights reserved.
--
% endif
</td>
<td class="n">
% if passPercent is not None :
${report.make_formatted_display_string(passPercent, '%.6g')}
%else :
--
% endif
</td>
% if numEpsilon >= 1 :
<td class="n">
% if passPercent is not None :
${report.make_formatted_display_string(passPercent, '%.6g')}
%else :
--
% endif
</td>
% endif
<td class="n">
% if finiteSimilarPercent is not None :
${report.make_formatted_display_string(finiteSimilarPercent, '%.6g')}
......@@ -221,8 +225,10 @@ Copyright (c) 2011 University of Wisconsin SSEC. All rights reserved.
</tr>
% endfor
</table>
<br><br>
<small>† where data is finite</small>
% if numEpsilon >= 1 :
<br><br>
<small>† where data is finite</small>
% endif
</p>
</blockquote>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment