Skip to content

Commit

Permalink
Merge branch 'main' into fix-table_wide
Browse files Browse the repository at this point in the history
  • Loading branch information
strengejacke authored Jan 9, 2025
2 parents f95c504 + b636c08 commit d882449
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ bug, you may also create an associated issue. If possible, try to illustrate you
* Please create a Git branch for each pull request (PR).
* Your contributed code should roughly follow the [R style guide](http://style.tidyverse.org), but in particular our [**easystats convention of code-style**](https://github.com/easystats/easystats#convention-of-code-style).
* parameters uses [roxygen2](https://cran.r-project.org/package=roxygen2), with
[Markdown syntax](https://cran.r-project.org/web/packages/roxygen2/vignettes/markdown.html),
[Markdown syntax](https://cran.r-project.org/web/packages/roxygen2/vignettes/rd-formatting.html),
for documentation.
* parameters uses [testthat](https://cran.r-project.org/package=testthat). Adding tests to the PR makes it easier for me to merge your PR into the code base.
* If your PR is a user-visible change, you may add a bullet to the top of `NEWS.md` describing the changes made. You may optionally add your GitHub username, and links to relevant issue(s)/PR(s).
Expand Down
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Type: Package
Package: parameters
Title: Processing of Model Parameters
Version: 0.24.0.8
Version: 0.24.0.9
Authors@R:
c(person(given = "Daniel",
family = "Lüdecke",
Expand Down
3 changes: 3 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,9 @@ S3method(model_parameters,lqm)
S3method(model_parameters,lqmm)
S3method(model_parameters,maov)
S3method(model_parameters,marginaleffects)
S3method(model_parameters,marginaleffects_contrasts)
S3method(model_parameters,marginaleffects_means)
S3method(model_parameters,marginaleffects_slopes)
S3method(model_parameters,marginalmeans)
S3method(model_parameters,margins)
S3method(model_parameters,maxLik)
Expand Down
12 changes: 12 additions & 0 deletions R/methods_marginaleffects.R
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,14 @@ model_parameters.comparisons <- model_parameters.marginaleffects
model_parameters.marginalmeans <- model_parameters.marginaleffects


#' @export
model_parameters.marginaleffects_means <- model_parameters.marginaleffects


#' @export
model_parameters.marginaleffects_contrasts <- model_parameters.marginaleffects


#' @export
model_parameters.hypotheses <- model_parameters.marginaleffects

Expand All @@ -73,6 +81,10 @@ model_parameters.hypotheses <- model_parameters.marginaleffects
model_parameters.slopes <- model_parameters.marginaleffects


#' @export
model_parameters.marginaleffects_slopes <- model_parameters.marginaleffects


#' @export
model_parameters.predictions <- function(model,
ci = 0.95,
Expand Down

0 comments on commit d882449

Please sign in to comment.