Skip to content

Commit 95abefc

Browse files
committed
Register seaborn.objects as a comparison package
1 parent 32d2273 commit 95abefc

2 files changed

Lines changed: 19 additions & 9 deletions

File tree

render.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
"pandas": "Pandas",
2121
"matplotlib": "Matplotlib",
2222
"seaborn": "Seaborn",
23+
"seaborn-objects": "seaborn.objects",
2324
"plotnine": "plotnine",
2425
"lets-plot": "lets-plot",
2526
"plotly": "plotly",

tests/test_plots.py

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,55 +3,64 @@
33

44
defined_plots = {
55
"bar-counts": [
6-
"pandas", "plotnine", "lets-plot", "ggplot", "plotly", "altair",
6+
"pandas", "seaborn-objects", "plotnine", "lets-plot", "ggplot", "plotly", "altair",
77
],
88
"dodged-bar-chart": [
9-
"pandas", "plotnine", "lets-plot", "ggplot", "plotly", "altair",
9+
"pandas", "seaborn-objects", "plotnine", "lets-plot", "ggplot", "plotly", "altair",
1010
],
1111
"scatter-plot": [
12-
"pandas", "plotnine", "lets-plot", "ggplot", "plotly", "altair",
12+
"pandas", "seaborn-objects", "plotnine", "lets-plot", "ggplot", "plotly", "altair",
1313
],
1414
"scatter-plot-with-colors": [
1515
"matplotlib",
1616
"seaborn",
17+
"seaborn-objects",
1718
"plotnine",
1819
"lets-plot",
1920
"ggplot",
2021
"plotly",
2122
"altair",
2223
],
2324
"scatter-plot-with-facet": [
24-
"seaborn", "plotnine", "lets-plot", "ggplot", "plotly", "altair",
25+
"seaborn", "seaborn-objects", "plotnine", "lets-plot", "ggplot", "plotly", "altair",
2526
],
2627
"scatter-plot-with-facets": [
27-
"seaborn", "plotnine", "lets-plot", "ggplot", "plotly", "altair",
28+
"seaborn", "seaborn-objects", "plotnine", "lets-plot", "ggplot", "plotly", "altair",
2829
],
2930
"scatter-plot-with-size": [
30-
"pandas", "plotnine", "lets-plot", "ggplot", "plotly", "altair",
31+
"pandas", "seaborn-objects", "plotnine", "lets-plot", "ggplot", "plotly", "altair",
3132
],
3233
"scatter-with-regression": [
3334
"seaborn", "plotnine", "lets-plot", "ggplot", "plotly",
3435
],
3536
"simple-histogram": [
3637
"pandas",
3738
"matplotlib",
39+
"seaborn-objects",
3840
"plotnine",
3941
"lets-plot",
4042
"ggplot",
4143
"plotly",
4244
"altair",
4345
],
4446
"stacked-bar-chart": [
45-
"pandas", "plotnine", "lets-plot", "ggplot", "plotly", "altair",
47+
"pandas", "seaborn-objects", "plotnine", "lets-plot", "ggplot", "plotly", "altair",
4648
],
4749
"stacked-kde": [
48-
"pandas", "seaborn", "plotnine", "lets-plot", "ggplot", "plotly", "altair",
50+
"pandas",
51+
"seaborn",
52+
"seaborn-objects",
53+
"plotnine",
54+
"lets-plot",
55+
"ggplot",
56+
"plotly",
57+
"altair",
4958
],
5059
"stacked-smooth-line-and-scatter": [
5160
"plotnine", "lets-plot", "ggplot", "plotly", "altair",
5261
],
5362
"timeseries": [
54-
"pandas", "plotnine", "lets-plot", "ggplot", "plotly", "altair",
63+
"pandas", "seaborn-objects", "plotnine", "lets-plot", "ggplot", "plotly", "altair",
5564
],
5665
}
5766

0 commit comments

Comments
 (0)