From 4d1aa5618bb09496d625884db072d72c0757639f Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 27 Oct 2025 02:24:36 +0000 Subject: [PATCH] docs: fix broken external reference URLs in examples MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updates several external reference URLs in example docstrings: - Trellis User PDF: Update to Auckland University host (beckers_barley_facet.py, beckers_barley_wrapped_facet.py) - Joyplots blog: Update to clauswilke.com domain (ridgeline_plot.py) - Zan Armstrong: Update to homepage (comet_chart.py) All original URLs returned 404 errors or connection failures. New URLs verified accessible. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- tests/examples_methods_syntax/beckers_barley_facet.py | 2 +- tests/examples_methods_syntax/beckers_barley_wrapped_facet.py | 2 +- tests/examples_methods_syntax/comet_chart.py | 2 +- tests/examples_methods_syntax/ridgeline_plot.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/examples_methods_syntax/beckers_barley_facet.py b/tests/examples_methods_syntax/beckers_barley_facet.py index af872d765..e8a8f0a69 100644 --- a/tests/examples_methods_syntax/beckers_barley_facet.py +++ b/tests/examples_methods_syntax/beckers_barley_facet.py @@ -7,7 +7,7 @@ they identified an anomaly in a widely used agriculatural dataset, where the "Morris" site accidentally had the years 1931 and 1932 swapped. They named this -`"The Morris Mistake." `_. +`"The Morris Mistake." `_. """ # category: case studies import altair as alt diff --git a/tests/examples_methods_syntax/beckers_barley_wrapped_facet.py b/tests/examples_methods_syntax/beckers_barley_wrapped_facet.py index 7e6409299..55eb9fc97 100644 --- a/tests/examples_methods_syntax/beckers_barley_wrapped_facet.py +++ b/tests/examples_methods_syntax/beckers_barley_wrapped_facet.py @@ -7,7 +7,7 @@ they identified an anomaly in a widely used agriculatural dataset, where the "Morris" site accidentally had the years 1931 and 1932 swapped. They named this -`"The Morris Mistake." `_. +`"The Morris Mistake." `_. """ # category: case studies import altair as alt diff --git a/tests/examples_methods_syntax/comet_chart.py b/tests/examples_methods_syntax/comet_chart.py index 9c8a6cf54..6e98585c4 100644 --- a/tests/examples_methods_syntax/comet_chart.py +++ b/tests/examples_methods_syntax/comet_chart.py @@ -1,7 +1,7 @@ """ Comet Chart ----------- -Inspired by `Zan Armstrong's 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 is shown in `this blogpost `_. diff --git a/tests/examples_methods_syntax/ridgeline_plot.py b/tests/examples_methods_syntax/ridgeline_plot.py index b41c96f53..a1fe8aba8 100644 --- a/tests/examples_methods_syntax/ridgeline_plot.py +++ b/tests/examples_methods_syntax/ridgeline_plot.py @@ -1,7 +1,7 @@ """ Ridgeline plot -------------- -A `Ridgeline plot `_ +A `Ridgeline plot `_ lets you visualize distribution of a numeric value for different subsets of data (what we call "facets" in Altair).