Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
assignment statistics
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
Christopher Bohn
assignment statistics
Commits
779fdae6
Commit
779fdae6
authored
1 year ago
by
Christopher Bohn
Browse files
Options
Downloads
Patches
Plain Diff
Report None for individual student's scaled score when there is no score
parent
d3d238a8
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
analyze_grades.py
+1
-1
1 addition, 1 deletion
analyze_grades.py
with
1 addition
and
1 deletion
analyze_grades.py
+
1
−
1
View file @
779fdae6
...
...
@@ -134,7 +134,7 @@ def print_sample_scores(assignment: CanvasAssignment,
i
=
1
for
student
in
selected_students
:
print
(
f
'
Student
{
i
:
>
2
}
-- raw score:
{
scores
[
student
]
}
'
f
'
\t
scaled score:
{
100
*
scores
[
student
]
/
points_possible
}
'
)
f
'
\t
scaled score:
{
100
*
scores
[
student
]
/
points_possible
if
scores
[
student
]
is
not
None
else
None
}
'
)
i
+=
1
print
(
'
Collect sample materials --
'
)
print
(
f
'"
A
"
student:
{
a_student
.
get_name
()
if
a_student
is
not
None
else
a_student
}
'
)
...
...
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