Skip to content

Commit

Permalink
Fix plot command in section 9
Browse files Browse the repository at this point in the history
make command match figure
  • Loading branch information
cemacrr committed Dec 11, 2024
1 parent 185fd3b commit f5b4b04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _episodes/09-plotting.md
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ If we use Matplotlib's `contourf` function, we can include the x and y values in
~~~
# Create filled contour plot using Matplob's contourf function:
plt.contourf(x, y, z, cmap='RdBu')
plt.contourf(x, y, z)
# Add a colour bar:
plt.colorbar()
~~~
Expand Down

0 comments on commit f5b4b04

Please sign in to comment.