Skip to content

Commit

Permalink
Fix merge conflict 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Robinlovelace committed Oct 5, 2024
1 parent cb7bcda commit 2244f54
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion 08-mapping.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ For example, here is a plot similar to @fig-faceted-map2, but specifying each pa

```{python}
#| label: fig-faceted-map3
#| fig-cap: 2D layout in a faceted map, using "manual" specification of the panels
#| fig-cap: Two-dimensional layout in a faceted map, using 'manual' specification of the panels
fig, ax = plt.subplots(ncols=2, nrows=int(len(vars)/2), figsize=(6, 6))
nz.plot(ax=ax[0][0], column=vars[0], legend=True)
ax[0][0].set_title(vars[0])
Expand Down
2 changes: 1 addition & 1 deletion code/chapters/08-mapping.py
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@


#| label: fig-faceted-map3
#| fig-cap: 2D layout in a faceted map, using "manual" specification of the panels
#| fig-cap: Two-dimensional layout in a faceted map, using 'manual' specification of the panels
fig, ax = plt.subplots(ncols=2, nrows=int(len(vars)/2), figsize=(6, 6))
nz.plot(ax=ax[0][0], column=vars[0], legend=True)
ax[0][0].set_title(vars[0])
Expand Down

0 comments on commit 2244f54

Please sign in to comment.