Skip to content
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion episodes/09-plotting.md
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How about "just one call" -> "a single call"?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good point - if 'just' is indeed a problematic word it is somewhat ironic, though unintentional, I ended up suggesting it in wording to replace use of 'simple'! Will update in a new commit in a moment.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Resolved in 1d882a2, though I'll let you mark this as formally resolved if you agree.

Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ exercises: 15
import matplotlib.pyplot as plt
```

- Simple plots are then (fairly) simple to create.
- Simple plots can be created with just one call, to `plt.plot` with the x variable and then y variable to
plot as the arguments:

```python
time = [0, 1, 2, 3]
Expand Down
Loading