Skip to content

Commit 41cf9bb

Browse files
committed
link to curve from README
1 parent df0bfd5 commit 41cf9bb

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,7 @@ In [Computing in Context](https://computing-in-context.afeld.me/), students "exp
4242
- Individual score: 14%
4343
- This is effectively weighting the group work based on the individual's contributions.
4444

45-
There will not be an exam.
46-
47-
Data visualizations must have good titles and axis labels.
45+
There will not be an exam. The grades will be [curved](docs/curve.ipynb).
4846

4947
### Assignment scoring details
5048

@@ -54,6 +52,7 @@ Data visualizations must have good titles and axis labels.
5452
- Syntax errors: -10 points
5553
- Incomplete Steps / Steps with logic errors: -2 to -5 points
5654
- Unattempted Steps: -10 points
55+
- Data visualizations missing good titles / axis labels: -5 to -10 points
5756

5857
## Readings
5958

curve.ipynb renamed to docs/curve.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@
99
"source": [
1010
"# Grading curve\n",
1111
"\n",
12-
"This course has a curve due to [SIPA policy](https://bulletin.columbia.edu/sipa/academic-policies/satisfactory-academic-progress/):\n",
12+
"This course has a curve, per [SIPA policy](https://bulletin.columbia.edu/sipa/academic-policies/satisfactory-academic-progress/):\n",
1313
"\n",
1414
"> Grades submitted for SIPA core courses must have an average GPA between 3.2 and 3.4, with the goal being 3.3.\n",
1515
"\n",
1616
"---\n",
1717
"\n",
1818
"## How course grades work\n",
1919
"\n",
20-
"1. The grades are computed using [the weights listed in the syllabus](https://computing-in-context.afeld.me/#grading).\n",
20+
"1. The grades are computed using [the weights listed in the syllabus](../README.md#grading).\n",
2121
"1. The percentage required for all the letter grades is adjusted up or down as necessary to hit the target GPA range across both sections.\n",
2222
"1. The letter grades are [uploaded to SSOL](https://registrar.columbia.edu/content/managing-grades).\n",
2323
"\n",
@@ -2239,8 +2239,8 @@
22392239
"ssol = adjusted_grades.rename(columns={\"SIS User ID\": \"UNI\", \"letter_grade\": \"grade\"})\n",
22402240
"ssol = ssol[[\"UNI\", \"grade\"]].sort_values(\"UNI\")\n",
22412241
"\n",
2242-
"os.makedirs(\"tmp\", exist_ok=True)\n",
2243-
"ssol.to_csv(\"tmp/grades.csv\", index=False)\n",
2242+
"os.makedirs(\"../tmp\", exist_ok=True)\n",
2243+
"ssol.to_csv(\"../tmp/grades.csv\", index=False)\n",
22442244
"print(\"Done\")"
22452245
]
22462246
}

0 commit comments

Comments
 (0)