File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1271,13 +1271,13 @@ and add a title to the chart by specifying the `title` argument of `alt.Chart`.
1271
1271
Plot titles are not always required, especially when it would be redundant with an already-existing
1272
1272
caption or surrounding context (e.g., in a slide presentation with annotations).
1273
1273
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,"
1275
1275
or a more general summary of the information displayed, e.g., "The twelve largest landmasses on Earth."
1276
1276
1277
1277
``` {code-cell} ipython3
1278
1278
islands_plot_sorted = alt.Chart(
1279
1279
islands_top12,
1280
- title="Earth's seven largest landmasses are all continents"
1280
+ title="Earth's seven largest landmasses are continents"
1281
1281
).mark_bar().encode(
1282
1282
x=alt.X("size").title("Size (1000 square mi)"),
1283
1283
y=alt.Y("landmass").sort("x").title("Landmass"),
You can’t perform that action at this time.
0 commit comments