Skip to content

Commit 6594ce9

Browse files
committed
tweak Assignments wording
1 parent 5e2cc6e commit 6594ce9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

assignments.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ You'll create your own notebook.
4545
- Keep each cell to only a few lines of code.
4646
- Allows/encourages you to output intermediate results, ensuring that everything is working as expected.
4747
- You are always welcome to **add cells**. You probably don't want more than a few lines of code in each. This makes the spot checking of intermediate results easier.
48-
- Make notebooks [idempotent](https://en.wikipedia.org/wiki/Idempotence)
48+
- Make notebooks [idempotent](https://en.wikipedia.org/wiki/Idempotence).
4949
- Makes your work reproducible.
5050
- Use `Restart session and run all` (⏩ button in toolbar).
5151

@@ -54,10 +54,10 @@ You'll create your own notebook.
5454
1. Ensure all the outputs are visible and the notebook is cleaned up.
5555
- This is a good time to run the notebook end-to-end with `Restart session and run all`.
5656
- See [general scoring criteria](syllabus.md#assignment-scoring).
57-
1. Ensure the notebook doesn't contain any sensitive information. (Only really applicable to [open-ended assignments](assignments/open_ended.md).)
57+
1. Ensure the notebook doesn't contain any sensitive information. (Only really applicable to [open-ended assignments](assignments/open_ended.md).) This might include:
5858
- API keys
59-
- Personally-identifiable information (PII)
60-
1. `Download as .ipynb` and `.py` (two files).
59+
- Personally-identifiable information (PII; data about individuals)
60+
1. `Download .ipynb` and `.py` (two files).
6161

6262
![Click the Colab File menu, Download, then Download as .ipynb and Download as .py](extras/img/download_notebook.png)
6363

@@ -82,7 +82,7 @@ You'll create your own notebook.
8282
- **In a visualization, the values are out of order along the axis, or you're seeing vertical/zig-zag-y lines:** Make sure that:
8383
- The values are integers/floats/[timestamps](https://plotly.com/python/line-charts/#line-plots-on-date-axes), not strings, where applicable.
8484
- [Line charts: The column used for the X axis is sorted.](https://plotly.com/python/line-charts/#data-order-in-line-charts)
85-
- **`AttributeError: partially initialized module 'orjson' has no attribute 'OPT_NON_STR_KEYS'`:** Add the following cell before your other Plotly code, then `Restart session and run all`.
85+
- [**`AttributeError: partially initialized module 'orjson' has no attribute 'OPT_NON_STR_KEYS'`:**](https://github.com/plotly/plotly.py/issues/3567) Add the following cell before your other Plotly code, then `Restart session and run all`.
8686

8787
```python
8888
import plotly.io

0 commit comments

Comments
 (0)