Skip to content
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
strategy:
matrix:
include:
- python-version: "3.10"
- python-version: "3.11"
resolution: "lowest-direct"
- python-version: 3.14
resolution: "highest"
Expand Down
9 changes: 9 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,12 @@ repos:
args: [--select=I001, --fix]
# Run the formatter.
- id: ruff-format
- repo: local
hooks:
# Requires the oxipng binary on PATH:
# brew install oxipng (or: cargo install oxipng)
- id: oxipng
name: optimize baseline images
entry: oxipng -o 4 --strip safe
language: system
files: ^tests/baseline_images/.*\.png$
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ Development version

```console
$ pip install git+https://github.com/has2k1/plotnine.git
$ brew install oxipng # Test image optimiser (OR `cargo install oxipng`)
```

## Contributing
Expand Down
7 changes: 7 additions & 0 deletions doc/changelog.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,13 @@ title: Changelog

### Enhancements

- The `factor` function available when evaluating expressions in
[](:class:`~plotnine.aes`) now accepts a scalar value.

```python
ggplot(mtcars, aes("wt", "mpg", color="factor(4)")) + geom_point()
```

- Increased the default linespacing used by themes from `0.9` to `1.2`.
This gives multiline titles, subtitles and captions a better balance between looking compact and looking crumpled.

Expand Down
5 changes: 3 additions & 2 deletions plotnine/_utils/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,9 @@ def __post_init__(self):
# https://github.com/matplotlib/matplotlib/issues/24644
# When drawing the Composition, the dpi themeable is infective
# because it sets the rcParam after this figure is created.
rcParams = {"figure.dpi": self.cmp.theme.getp("dpi")}
self._rc_context = mpl.rc_context(rcParams)
self._rc_context = mpl.rc_context(
{"figure.dpi": self.cmp.theme.getp("dpi")}
)

def __enter__(self) -> Self:
"""
Expand Down
5 changes: 4 additions & 1 deletion plotnine/mapping/_eval_environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@


def factor(
values: Sequence[Any],
values: Sequence[Any] | float | str,
categories: Sequence[Any] | None = None,
ordered: bool | None = None,
) -> pd.Categorical:
Expand All @@ -48,6 +48,9 @@ def factor(
`categories` attribute (which in turn is the `categories` argument, if
provided).
"""
if isinstance(values, (int, float, str)):
values = [values]

return pd.Categorical(values, categories=categories, ordered=None) # pyright: ignore[reportReturnType]


Expand Down
4 changes: 2 additions & 2 deletions plotnine/themes/elements/element_text.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class element_text(element_base):
the text then align the bounding box of the rotated text.
If `"anchor"`, first align the unrotated text then rotate the
text around the point of alignment.
linespacing : float
linespacing :
Line spacing
backgroundcolor :
Background color
Expand Down Expand Up @@ -111,7 +111,7 @@ def __init__(
| Sequence[float]
| None
) = None,
linespacing: float | None = None,
linespacing: float | Literal["normal"] | None = None,
backgroundcolor: (
str
| tuple[float, float, float]
Expand Down
7 changes: 3 additions & 4 deletions plotnine/themes/theme.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,13 +222,12 @@ def __init__(
svg_usefonts=None,
**kwargs,
):
import matplotlib as mpl

self.themeables = Themeables()
self.complete = complete

if complete:
self._rcParams = deepcopy(DEFAULT_RCPARAMS)
else:
self._rcParams = {}
self._rcParams = mpl.RcParams(DEFAULT_RCPARAMS if complete else {})

# Themeables
official_themeables = themeable.registry()
Expand Down
3 changes: 1 addition & 2 deletions plotnine/themes/theme_gray.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def __init__(self, base_size=11, base_family=None):
color="black",
ma="center",
size=base_size,
linespacing=1.2,
linespacing="normal",
rotation=0,
margin=margin(),
),
Expand Down Expand Up @@ -147,7 +147,6 @@ def __init__(self, base_size=11, base_family=None):
strip_text=element_text(
color="#1A1A1A",
size=base_size * 0.8,
linespacing=1.5,
margin=margin_auto(half_line * 0.8),
),
strip_text_y=element_text(rotation=-90),
Expand Down
33 changes: 19 additions & 14 deletions plotnine/themes/theme_matplotlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,16 @@ def __init__(self, rc=None, fname=None, use_defaults=True):
line=element_line(size=linewidth),
rect=element_rect(size=linewidth),
text=element_text(
ma="center",
size=base_size,
linespacing=1,
linespacing="normal",
rotation=0,
margin={},
margin=margin(),
),
aspect_ratio=get_option("aspect_ratio"),
axis_text=element_text(margin=margin(t=2.4, r=2.4, unit="pt")),
axis_text=element_text(
size=base_size * 0.8, margin=margin(t=2.4, r=2.4, unit="pt")
),
axis_title_x=element_text(
va="bottom", ha="center", margin=margin(t=m, unit="fig")
),
Expand All @@ -65,12 +68,15 @@ def __init__(self, rc=None, fname=None, use_defaults=True):
legend_key_spacing_x=6,
legend_key_spacing_y=2,
legend_frame=element_rect(color="black"),
legend_key_size=16,
legend_key_size=base_size * 0.8 * 1.8,
legend_ticks_length=0.2,
legend_margin=0,
legend_position="right",
legend_spacing=10,
legend_text=element_text(margin=margin_auto(m / 2, unit="fig")),
legend_text=element_text(
size=base_size * 0.8,
margin=margin_auto(m / 1.5, unit="fig"),
),
legend_ticks=element_line(color="black"),
legend_title=element_text(
ha="left",
Expand All @@ -80,27 +86,29 @@ def __init__(self, rc=None, fname=None, use_defaults=True):
panel_grid=element_blank(),
panel_spacing=m,
plot_caption=element_text(
size=base_size * 0.8,
ha="right",
va="bottom",
ma="left",
margin=margin(t=m, unit="fig"),
),
plot_footer=element_text(
size=base_size * 0.8,
ha="left",
va="bottom",
ma="left",
margin=margin(t=1 / 3, b=1 / 3, unit="lines"),
),
plot_margin=m,
plot_footer_background=element_blank(),
plot_footer_line=element_blank(),
plot_subtitle=element_text(
size=base_size * 0.9,
va="top",
ma="left",
margin=margin(b=m, unit="fig"),
),
plot_footer_background=element_blank(),
plot_footer_line=element_blank(),
plot_title=element_text(
size=base_size * 1.2,
va="top",
ma="left",
margin=margin(b=m, unit="fig"),
Expand All @@ -117,21 +125,18 @@ def __init__(self, rc=None, fname=None, use_defaults=True):
plot_tag_position="topleft",
strip_align=0,
strip_background=element_rect(
fill="#D9D9D9", color="black", size=linewidth
fill="#F2F2F2", color="black", size=linewidth
),
strip_text=element_text(
linespacing=1.5,
size=base_size * 0.8,
margin=margin_auto(half_line * 0.8),
),
strip_text_y=element_text(rotation=-90),
complete=True,
)

if use_defaults:
_copy = mpl.rcParams.copy()
if "tk.pythoninspect" in _copy:
del _copy["tk.pythoninspect"]
self._rcParams.update(_copy)
self._rcParams.update(mpl.rcParams.copy())

if fname:
self._rcParams.update(mpl.rc_params_from_file(fname))
Expand Down
1 change: 0 additions & 1 deletion plotnine/themes/theme_seaborn.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,6 @@ def __init__(
strip_background=element_rect(color="none", fill="#D1CDDF"),
strip_text=element_text(
size=base_size * 0.8,
linespacing=1.5,
margin=margin_auto(half_line * 0.8),
),
strip_text_y=element_text(rotation=-90),
Expand Down
2 changes: 1 addition & 1 deletion plotnine/themes/theme_void.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def __init__(self, base_size=11, base_family=None):
style="normal",
color="black",
size=base_size,
linespacing=1.2,
linespacing="normal",
rotation=0,
margin=margin(),
),
Expand Down
11 changes: 6 additions & 5 deletions plotnine/themes/themeable.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
from matplotlib.artist import Artist
from matplotlib.axes import Axes
from matplotlib.figure import Figure
from matplotlib.typing import RcKeyType

from plotnine import theme
from plotnine.themes.targets import ThemeTargets
Expand Down Expand Up @@ -167,7 +168,7 @@ def __eq__(self, other: object) -> bool:
)

@property
def rcParams(self) -> dict[str, Any]:
def rcParams(self) -> dict[RcKeyType, Any]:
"""
Return themeables rcparams to an rcparam dict before plotting.

Expand Down Expand Up @@ -1065,7 +1066,7 @@ class text(axis_text, legend_text, strip_text, title):
"""

@property
def rcParams(self) -> dict[str, Any]:
def rcParams(self):
rcParams = super().rcParams

family = self.properties.get("family")
Expand Down Expand Up @@ -1521,7 +1522,7 @@ class line(axis_line, axis_ticks, panel_grid, legend_ticks, plot_footer_line):
"""

@property
def rcParams(self) -> dict[str, Any]:
def rcParams(self):
rcParams = super().rcParams
color = self.properties.get("color")
linewidth = self.properties.get("linewidth")
Expand Down Expand Up @@ -2136,7 +2137,7 @@ class dpi(themeable):
# https://github.com/matplotlib/matplotlib/issues/24644

@property
def rcParams(self) -> dict[str, Any]:
def rcParams(self):
rcParams = super().rcParams
rcParams["figure.dpi"] = self.properties["value"]
return rcParams
Expand Down Expand Up @@ -2542,7 +2543,7 @@ class svg_usefonts(themeable):
"""

@property
def rcParams(self) -> dict[str, Any]:
def rcParams(self):
rcParams = super().rcParams

rcParams["svg.fonttype"] = (
Expand Down
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,26 +15,26 @@ classifiers = [
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Framework :: Matplotlib",
"Topic :: Scientific/Engineering :: Visualization"
]
dependencies = [
"matplotlib>=3.8.0",
"matplotlib>=3.11.0",
"pandas>=2.2.0",
"mizani~=0.14.0",
"numpy>=1.23.5",
"scipy>=1.8.0",
"numpy>=1.25.0",
"scipy>=1.15.0",
# pyodide ships with statmodels==0.14.4 which is broken for later versions
# of numpy and pandas
# https://github.com/statsmodels/statsmodels/releases/tag/v0.14.6
"statsmodels<=0.14.4; sys_platform == 'emscripten'",
"statsmodels>=0.14.6; sys_platform != 'emscripten'",
]
requires-python = ">=3.10"
requires-python = ">=3.11"

[project.optional-dependencies]
all = [
Expand Down
Binary file modified tests/baseline_images/test_aes/geom_crossbar.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests/baseline_images/test_aes/irregular_shapes.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests/baseline_images/test_aes/reorder.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests/baseline_images/test_aes/reorder_index.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests/baseline_images/test_aes/stat_bin_2d.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests/baseline_images/test_aes/stat_ecdf.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests/baseline_images/test_aes/test_stat_function.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests/baseline_images/test_annotate/annotate_faceting.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests/baseline_images/test_coords/coord_fixed.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests/baseline_images/test_coords/coord_flip.png
Binary file modified tests/baseline_images/test_coords/coord_trans.png
Binary file modified tests/baseline_images/test_coords/coord_trans_reverse.png
Binary file modified tests/baseline_images/test_coords/datetime_scale_limits.png
Binary file modified tests/baseline_images/test_facet_labelling/label_both.png
Binary file modified tests/baseline_images/test_facet_labelling/label_context.png
Binary file modified tests/baseline_images/test_facet_labelling/label_value.png
Binary file modified tests/baseline_images/test_facet_labelling/labeller_towords.png
Binary file modified tests/baseline_images/test_facets/dir_v_ncol.png
Binary file modified tests/baseline_images/test_facets/facet_grid_drop_false.png
Binary file modified tests/baseline_images/test_facets/facet_grid_expression.png
Binary file modified tests/baseline_images/test_facets/facet_grid_margins.png
Binary file modified tests/baseline_images/test_facets/facet_grid_one_by_one_var.png
Binary file modified tests/baseline_images/test_facets/facet_grid_scales_free_x.png
Binary file modified tests/baseline_images/test_facets/facet_grid_scales_free_y.png
Binary file modified tests/baseline_images/test_facets/facet_grid_space_free.png
Binary file modified tests/baseline_images/test_facets/facet_grid_space_ratios.png
Binary file modified tests/baseline_images/test_facets/facet_wrap_direction_v.png
Binary file modified tests/baseline_images/test_facets/facet_wrap_expression.png
Binary file modified tests/baseline_images/test_facets/facet_wrap_label_both.png
Binary file modified tests/baseline_images/test_facets/facet_wrap_not_as_table.png
Binary file modified tests/baseline_images/test_facets/facet_wrap_one_var.png
Binary file modified tests/baseline_images/test_facets/facet_wrap_two_vars.png
Binary file modified tests/baseline_images/test_facets/manual_mapping_with_lists.png
Binary file modified tests/baseline_images/test_facets/non_mapped_facetting.png
Binary file modified tests/baseline_images/test_facets/variable_and_annotate.png
Binary file modified tests/baseline_images/test_geom_abline/aes_inheritance.png
Binary file modified tests/baseline_images/test_geom_abline/aesthetics.png
Binary file modified tests/baseline_images/test_geom_bar_col_histogram/bar-count.png
Binary file modified tests/baseline_images/test_geom_bar_col_histogram/col.png
Binary file modified tests/baseline_images/test_geom_bar_col_histogram/col_just.png
Binary file modified tests/baseline_images/test_geom_bin_2d/drop_false.png
Binary file modified tests/baseline_images/test_geom_bin_2d/drop_true.png
Binary file modified tests/baseline_images/test_geom_blank/blank.png
Binary file modified tests/baseline_images/test_geom_boxplot/aesthetics.png
Binary file modified tests/baseline_images/test_geom_boxplot/params.png
Binary file modified tests/baseline_images/test_geom_boxplot/position_nudge.png
Binary file modified tests/baseline_images/test_geom_boxplot/weight.png
Binary file modified tests/baseline_images/test_geom_count/continuous_x_y.png
Binary file modified tests/baseline_images/test_geom_count/discrete_x.png
Binary file modified tests/baseline_images/test_geom_count/discrete_y.png
Binary file modified tests/baseline_images/test_geom_crossbar/aesthetics.png
Binary file modified tests/baseline_images/test_geom_density/bounds.png
Binary file modified tests/baseline_images/test_geom_density/few_datapoints.png
Binary file modified tests/baseline_images/test_geom_density/gaussian-trimmed.png
Binary file modified tests/baseline_images/test_geom_density/gaussian.png
Binary file modified tests/baseline_images/test_geom_density/gaussian_weighted.png
Binary file modified tests/baseline_images/test_geom_density/triangular.png
Binary file modified tests/baseline_images/test_geom_density_2d/contours.png
Binary file modified tests/baseline_images/test_geom_density_2d/points.png
Binary file modified tests/baseline_images/test_geom_density_2d/polygon.png
Binary file modified tests/baseline_images/test_geom_dotplot/binaxis_y.png
Binary file modified tests/baseline_images/test_geom_dotplot/dotdensity.png
Binary file modified tests/baseline_images/test_geom_dotplot/group_basic.png
Binary file modified tests/baseline_images/test_geom_dotplot/group_stackgroups.png
Binary file modified tests/baseline_images/test_geom_dotplot/histodot.png
Binary file modified tests/baseline_images/test_geom_dotplot/stackdir_center.png
Binary file modified tests/baseline_images/test_geom_dotplot/stackdir_down.png
Binary file modified tests/baseline_images/test_geom_dotplot/stackratio.png
Binary file modified tests/baseline_images/test_geom_freqpoly/midpoint.png
Binary file modified tests/baseline_images/test_geom_hline/aesthetics.png
Binary file modified tests/baseline_images/test_geom_map/facet_wrap.png
Binary file modified tests/baseline_images/test_geom_map/geometries.png
Binary file modified tests/baseline_images/test_geom_map/multipoint.png
Binary file modified tests/baseline_images/test_geom_map/multipolygon.png
Binary file modified tests/baseline_images/test_geom_path_line_step/aesthetics.png
Binary file modified tests/baseline_images/test_geom_path_line_step/arrow.png
Binary file modified tests/baseline_images/test_geom_path_line_step/arrow_facets.png
Binary file modified tests/baseline_images/test_geom_path_line_step/step.png
Binary file modified tests/baseline_images/test_geom_path_line_step/step_mid.png
Binary file modified tests/baseline_images/test_geom_point/aesthetics.png
Binary file modified tests/baseline_images/test_geom_point/color_only_mapping.png
Binary file modified tests/baseline_images/test_geom_point/custom_shapes.png
Binary file modified tests/baseline_images/test_geom_point/legend_transparency.png
Binary file modified tests/baseline_images/test_geom_point/no_fill.png
Binary file modified tests/baseline_images/test_geom_point/no_mapping.png
Binary file modified tests/baseline_images/test_geom_pointdensity/contours.png
Binary file modified tests/baseline_images/test_geom_pointdensity/points.png
Binary file modified tests/baseline_images/test_geom_polygon/aesthetics.png
Binary file modified tests/baseline_images/test_geom_polygon/no_fill.png
Binary file modified tests/baseline_images/test_geom_qq_qq_line/normal.png
Binary file modified tests/baseline_images/test_geom_qq_qq_line/normal_with_line.png
Binary file modified tests/baseline_images/test_geom_quantile/lines.png
Binary file modified tests/baseline_images/test_geom_raster/gap_no_interpolation.png
Binary file modified tests/baseline_images/test_geom_raster/rectangle.png
Binary file modified tests/baseline_images/test_geom_raster/square.png
Binary file modified tests/baseline_images/test_geom_rect_tile/coord-trans.png
Binary file modified tests/baseline_images/test_geom_rect_tile/infinite-rects.png
Binary file modified tests/baseline_images/test_geom_rect_tile/rect-aesthetics.png
Binary file modified tests/baseline_images/test_geom_rect_tile/rect-nofill.png
Binary file modified tests/baseline_images/test_geom_rect_tile/tile-aesthetics.png
Binary file modified tests/baseline_images/test_geom_ribbon_area/area_aesthetics.png
Binary file modified tests/baseline_images/test_geom_ribbon_area/ribbon_where.png
Binary file modified tests/baseline_images/test_geom_rug/aesthetics.png
Binary file modified tests/baseline_images/test_geom_rug/coord_flip.png
Binary file modified tests/baseline_images/test_geom_segment/aesthetics.png
Binary file modified tests/baseline_images/test_geom_segment/arrow.png
Binary file modified tests/baseline_images/test_geom_segment/arrow_coord_flip.png
Binary file modified tests/baseline_images/test_geom_sina/method_counts.png
Binary file modified tests/baseline_images/test_geom_sina/scale_area+coord_flip.png
Binary file modified tests/baseline_images/test_geom_sina/scale_area.png
Binary file modified tests/baseline_images/test_geom_sina/scale_count.png
Binary file modified tests/baseline_images/test_geom_sina/style.png
Binary file modified tests/baseline_images/test_geom_smooth/continuous_x.png
Binary file modified tests/baseline_images/test_geom_smooth/coord_trans_se_false.png
Binary file modified tests/baseline_images/test_geom_smooth/discrete_x.png
Binary file modified tests/baseline_images/test_geom_smooth/discrete_x_fullrange.png
Binary file modified tests/baseline_images/test_geom_smooth/glm_formula.png
Binary file modified tests/baseline_images/test_geom_smooth/gls_formula.png
Binary file modified tests/baseline_images/test_geom_smooth/legend_fill_ratio.png
Binary file modified tests/baseline_images/test_geom_smooth/linear_smooth.png
Binary file modified tests/baseline_images/test_geom_smooth/linear_smooth_no_ci.png
Binary file modified tests/baseline_images/test_geom_smooth/lm_formula.png
Binary file modified tests/baseline_images/test_geom_smooth/lm_formula_weights.png
Binary file modified tests/baseline_images/test_geom_smooth/non_linear_smooth.png
Binary file modified tests/baseline_images/test_geom_smooth/rlm_formula.png
Binary file modified tests/baseline_images/test_geom_smooth/sorts_by_x.png
Binary file modified tests/baseline_images/test_geom_spoke/aesthetics.png
Binary file modified tests/baseline_images/test_geom_spoke/test_unmapped_angle.png
Binary file modified tests/baseline_images/test_geom_text_label/label_aesthetics.png
Binary file modified tests/baseline_images/test_geom_text_label/text_aesthetics.png
Binary file modified tests/baseline_images/test_geom_violin/aesthetics.png
Binary file modified tests/baseline_images/test_geom_violin/no_trim.png
Binary file modified tests/baseline_images/test_geom_violin/overlap.png
Binary file modified tests/baseline_images/test_geom_violin/quantile_aesthetics.png
Binary file modified tests/baseline_images/test_geom_violin/scale.png
Binary file modified tests/baseline_images/test_geom_violin/scales_free.png
Binary file modified tests/baseline_images/test_geom_violin/style.png
Binary file modified tests/baseline_images/test_geom_violin/style_alternating.png
Binary file modified tests/baseline_images/test_geom_vline/aesthetics.png
Binary file modified tests/baseline_images/test_ggplot_internals/to_pandas.png
Binary file modified tests/baseline_images/test_inset_element/align_to_full.png
Binary file modified tests/baseline_images/test_inset_element/align_to_panel.png
Binary file modified tests/baseline_images/test_inset_element/align_to_plot.png
Binary file modified tests/baseline_images/test_inset_element/and_non_theme.png
Binary file modified tests/baseline_images/test_inset_element/compose_inset.png
Binary file modified tests/baseline_images/test_inset_element/host_inset_and.png
Binary file modified tests/baseline_images/test_inset_element/host_inset_mul.png
Binary file modified tests/baseline_images/test_inset_element/image_basic.png
Binary file modified tests/baseline_images/test_inset_element/image_standalone.png
Binary file modified tests/baseline_images/test_inset_element/nested_on_top_true.png
Binary file modified tests/baseline_images/test_inset_element/overlapping_insets.png
Binary file modified tests/baseline_images/test_inset_element/quadrants_separate.png
Binary file modified tests/baseline_images/test_layers/inserting_layers.png
Binary file modified tests/baseline_images/test_layout/axis_text_justification.png
Binary file modified tests/baseline_images/test_layout/colorbar_frame.png
Binary file modified tests/baseline_images/test_layout/default.png
Binary file modified tests/baseline_images/test_layout/default_tag_location.png
Binary file modified tests/baseline_images/test_layout/different_colorbar_themes.png
Binary file modified tests/baseline_images/test_layout/facet_grid.png
Binary file modified tests/baseline_images/test_layout/facet_wrap.png
Binary file modified tests/baseline_images/test_layout/facet_wrap_scales_free.png
Binary file modified tests/baseline_images/test_layout/inside_legend_left.png
Binary file modified tests/baseline_images/test_layout/inside_legend_top.png
Binary file modified tests/baseline_images/test_layout/inside_legend_top_right.png
Binary file modified tests/baseline_images/test_layout/legend_at_the_bottom.png
Binary file modified tests/baseline_images/test_layout/legend_at_top.png
Binary file modified tests/baseline_images/test_layout/legend_on_the_left.png
Binary file modified tests/baseline_images/test_layout/margin_bottom.png
Binary file modified tests/baseline_images/test_layout/outside_legend_left_top.png
Binary file modified tests/baseline_images/test_layout/outside_legend_top_right.png
Binary file modified tests/baseline_images/test_layout/panel_bottomleft.png
Binary file modified tests/baseline_images/test_layout/panel_xycoords.png
Binary file modified tests/baseline_images/test_layout/plot_footer.png
Binary file modified tests/baseline_images/test_layout/plot_footer_background.png
Binary file modified tests/baseline_images/test_layout/plot_title_justification.png
Binary file modified tests/baseline_images/test_layout/plot_topright.png
Binary file modified tests/baseline_images/test_layout/plot_xycoords.png
Binary file modified tests/baseline_images/test_layout/turn_off_guide.png
Binary file modified tests/baseline_images/test_plot_composition/add_into_ncol.png
Binary file modified tests/baseline_images/test_plot_composition/add_into_stack.png
Binary file modified tests/baseline_images/test_plot_composition/and_operator.png
Binary file modified tests/baseline_images/test_plot_composition/facets.png
Binary file modified tests/baseline_images/test_plot_composition/footers.png
Binary file modified tests/baseline_images/test_plot_composition/minus.png
Binary file modified tests/baseline_images/test_plot_composition/mul_operator.png
Binary file modified tests/baseline_images/test_plot_composition/plot_layout_widths.png
Binary file modified tests/baseline_images/test_plot_composition/plus_operator.png
Loading
Loading