Skip to content

Commit

Permalink
fix issue with area in si plot
Browse files Browse the repository at this point in the history
  • Loading branch information
mattansb committed Jan 5, 2025
1 parent c2a9e3d commit 22a25b9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Type: Package
Package: see
Title: Model Visualisation Toolbox for 'easystats' and 'ggplot2'
Version: 0.9.0.13
Version: 0.9.0.14
Authors@R:
c(person(given = "Daniel",
family = "Lüdecke",
Expand Down
2 changes: 2 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@

## Bug fixes

- Fixed issue in `plot()` for `bayestestR::si()`.

- Fixed issue in `plot()` for `parameters::model_parameters()` for GAM models.

# see 0.9.0
Expand Down
2 changes: 1 addition & 1 deletion R/plot.si.R
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ plot.see_si <- function(x,
) +
# distributions
geom_line(linewidth = 1, data = plot_data) +
geom_area(alpha = 0.15, data = plot_data) +
geom_area(alpha = 0.15, data = plot_data, position = "identity") +
labs(y = "Density")
}

Expand Down

0 comments on commit 22a25b9

Please sign in to comment.