Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: examples: remove connected_scatterplot #3159

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 0 additions & 18 deletions tests/examples_arguments_syntax/connected_scatterplot.py

This file was deleted.

5 changes: 4 additions & 1 deletion tests/examples_arguments_syntax/line_custom_order.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Line Chart with Custom Order
----------------------------
By default, the lines path (order of points in the line) is
By default, the line's path (order of points in the line) is
determined by data values on the temporal/ordinal field.
However, a field can be mapped to the order channel for a custom path.

Expand All @@ -10,6 +10,9 @@
order channel to sort the points in the line by time field (year).
The earliest year (1956) is one endpoint and the latest year (2010)
is the other endpoint.

This is based on Hannah Fairfield's article 'Driving Shifts Into Reverse'.
See https://archive.nytimes.com/www.nytimes.com/imagepages/2010/05/02/business/02metrics.html.
"""
# category: line charts
import altair as alt
Expand Down
18 changes: 0 additions & 18 deletions tests/examples_methods_syntax/connected_scatterplot.py

This file was deleted.

5 changes: 4 additions & 1 deletion tests/examples_methods_syntax/line_custom_order.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Line Chart with Custom Order
----------------------------
By default, the lines path (order of points in the line) is
By default, the line's path (order of points in the line) is
determined by data values on the temporal/ordinal field.
However, a field can be mapped to the order channel for a custom path.

Expand All @@ -10,6 +10,9 @@
order channel to sort the points in the line by time field (year).
The earliest year (1956) is one endpoint and the latest year (2010)
is the other endpoint.

This is based on Hannah Fairfield's article 'Driving Shifts Into Reverse'.
See https://archive.nytimes.com/www.nytimes.com/imagepages/2010/05/02/business/02metrics.html.
"""
# category: line charts
import altair as alt
Expand Down
2 changes: 1 addition & 1 deletion tests/test_transformed_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
("beckers_barley_wrapped_facet.py", 120, ["site", "median_yield"]),
("bump_chart.py", 100, ["rank", "yearmonth_date"]),
("comet_chart.py", 120, ["variety", "delta"]),
("connected_scatterplot.py", 55, ["miles", "gas"]),
("diverging_stacked_bar_chart.py", 40, ["value", "percentage_start"]),
("donut_chart.py", 6, ["value_start", "value_end"]),
("gapminder_bubble_plot.py", 187, ["income", "population"]),
Expand All @@ -39,6 +38,7 @@
("layered_bar_chart.py", 51, ["source", "net_generation"]),
("layered_histogram.py", 113, ["bin_maxbins_100_Measurement"]),
("line_chart_with_cumsum.py", 52, ["cumulative_wheat"]),
("line_custom_order.py", 55, ["miles", "gas"]),
("line_percent.py", 30, ["sex", "perc"]),
("line_with_log_scale.py", 15, ["year", "sum_people"]),
("multifeature_scatter_plot.py", 150, ["petalWidth", "species"]),
Expand Down