Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
UW-Glance
Manage
Activity
Members
Labels
Plan
Issues
28
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Eva Schiffer
UW-Glance
Commits
7f2865a8
Commit
7f2865a8
authored
3 years ago
by
Eva Schiffer
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
pyglance/glance/report-main.txt
+16
-10
16 additions, 10 deletions
pyglance/glance/report-main.txt
with
16 additions
and
10 deletions
pyglance/glance/report-main.txt
+
16
−
10
View file @
7f2865a8
...
...
@@ -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>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment