Skip to content

Commit b5c35cb

Browse files
consistency with R (which needs shorter titles to keep consistent font sizes...)
1 parent a2cb168 commit b5c35cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/viz.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1271,13 +1271,13 @@ and add a title to the chart by specifying the `title` argument of `alt.Chart`.
12711271
Plot titles are not always required, especially when it would be redundant with an already-existing
12721272
caption or surrounding context (e.g., in a slide presentation with annotations).
12731273
But if you decide to include one, a good plot title should provide the take home message
1274-
that you want readers to focus on, e.g., "Earth's seven largest landmasses are all continents,"
1274+
that you want readers to focus on, e.g., "Earth's seven largest landmasses are continents,"
12751275
or a more general summary of the information displayed, e.g., "The twelve largest landmasses on Earth."
12761276

12771277
```{code-cell} ipython3
12781278
islands_plot_sorted = alt.Chart(
12791279
islands_top12,
1280-
title="Earth's seven largest landmasses are all continents"
1280+
title="Earth's seven largest landmasses are continents"
12811281
).mark_bar().encode(
12821282
x=alt.X("size").title("Size (1000 square mi)"),
12831283
y=alt.Y("landmass").sort("x").title("Landmass"),

0 commit comments

Comments
 (0)