From 0343dfc4dea17c801c94d29ffe2f59f0f790ec95 Mon Sep 17 00:00:00 2001 From: Ben Welsh Date: Thu, 30 Jun 2022 14:46:06 -0700 Subject: [PATCH 1/6] No need to say "Example" in the example headline --- altair/examples/ridgeline_plot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/altair/examples/ridgeline_plot.py b/altair/examples/ridgeline_plot.py index e6425b9c2..e60db1ef6 100644 --- a/altair/examples/ridgeline_plot.py +++ b/altair/examples/ridgeline_plot.py @@ -1,6 +1,6 @@ """ -Ridgeline plot Example ----------------------- +Ridgeline plot +-------------- A `Ridgeline plot `_ chart is a chart that lets you visualize distribution of a numeric value for several groups. From 0475ac2f30e49e2ccb91d805149c059f21309ba3 Mon Sep 17 00:00:00 2001 From: Ben Welsh Date: Thu, 30 Jun 2022 14:46:35 -0700 Subject: [PATCH 2/6] Update parallel_coordinates.py --- altair/examples/parallel_coordinates.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/altair/examples/parallel_coordinates.py b/altair/examples/parallel_coordinates.py index 2f977dbf5..2ba24a8db 100644 --- a/altair/examples/parallel_coordinates.py +++ b/altair/examples/parallel_coordinates.py @@ -1,6 +1,6 @@ """ -Parallel Coordinates Example ----------------------------- +Parallel Coordinates +-------------------- A `Parallel Coordinates `_ chart is a chart that lets you visualize the individual data points by drawing a single line for each of them. From c2ffe3ea45973b4a5193fa3befa02ababac40dae Mon Sep 17 00:00:00 2001 From: Ben Welsh Date: Thu, 30 Jun 2022 14:47:01 -0700 Subject: [PATCH 3/6] Update normed_parallel_coordinates.py --- altair/examples/normed_parallel_coordinates.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/altair/examples/normed_parallel_coordinates.py b/altair/examples/normed_parallel_coordinates.py index 88cd45c90..fbf1a8cc4 100644 --- a/altair/examples/normed_parallel_coordinates.py +++ b/altair/examples/normed_parallel_coordinates.py @@ -1,6 +1,6 @@ """ -Normalized Parallel Coordinates Example ---------------------------------------- +Normalized Parallel Coordinates +------------------------------- A `Parallel Coordinates `_ chart is a chart that lets you visualize the individual data points by drawing a single line for each of them. From 34d7d071b1900a1a43d4180663cf266ad6591f27 Mon Sep 17 00:00:00 2001 From: Ben Welsh Date: Thu, 30 Jun 2022 14:47:15 -0700 Subject: [PATCH 4/6] Update comet_chart.py --- altair/examples/comet_chart.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/altair/examples/comet_chart.py b/altair/examples/comet_chart.py index e0749a0ab..9c6fa7abc 100644 --- a/altair/examples/comet_chart.py +++ b/altair/examples/comet_chart.py @@ -1,6 +1,6 @@ """ -Comet Chart Example ----------------------------- +Comet Chart +----------- Inspired by `Zan Armstrong's comet chart `_ this plot uses ``mark_trail`` to visualize change of grouped data over time. A more elaborate example and explanation of creating comet charts in Altair From 0fa6c3bc085b644c057607da6e1579322f0091c6 Mon Sep 17 00:00:00 2001 From: Ben Welsh Date: Thu, 30 Jun 2022 14:48:03 -0700 Subject: [PATCH 5/6] Update select_detail.py --- altair/examples/select_detail.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/altair/examples/select_detail.py b/altair/examples/select_detail.py index f5230c84d..e2f72b71c 100644 --- a/altair/examples/select_detail.py +++ b/altair/examples/select_detail.py @@ -1,6 +1,6 @@ """ -Selection Detail Example -======================== +Selection Detail +================ This example shows a selection that links two views of data: the left panel contains one point per object, and the right panel contains one line per object. Clicking on either the points or lines will select the corresponding From b20ebc6fcecdd82c7534e07f34b8f27a1a8e7e4f Mon Sep 17 00:00:00 2001 From: Ben Welsh Date: Thu, 30 Jun 2022 14:48:17 -0700 Subject: [PATCH 6/6] Update interval_selection.py --- altair/examples/interval_selection.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/altair/examples/interval_selection.py b/altair/examples/interval_selection.py index 55853d9af..ae0106213 100644 --- a/altair/examples/interval_selection.py +++ b/altair/examples/interval_selection.py @@ -1,6 +1,6 @@ """ -Interval Selection Example -========================== +Interval Selection +================== This is an example of creating a stacked chart for which the domain of the top chart can be selected by interacting with the bottom chart.