Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

hsbadr/additive

Open more actions menu

Bindings for Additive TidyModels additive logo

Lifecycle: Stable Codecov Test Coverage Last commit Commits since release R

CRAN Status CRAN Downloads License: MIT DOI

additive supports Generalized Additive Models (GAM) using mgcv with parsnip/tidymodels.

Installation

The stable version of additive can be installed from CRAN using:

install.packages("additive")

The development version of additive can be installed from GitHub using:

install.packages("pak")
pak::pkg_install("hsbadr/additive")

Example

library(additive)

set.seed(2020)
dat <- gamSim(1, n = 400, dist = "normal", scale = 2)

additive_mod <-
  additive() |>
  set_engine("mgcv") |>
  fit(
    y ~ s(x0) + s(x1) + s(x2) + s(x3),
    data = dat
  )

summary(additive_mod$fit)

For more details, get started with additive.

Citation

To cite additive in publications, please use:

citation("additive")

Hamada S. Badr (2024): additive: Bindings for Additive TidyModels, Comprehensive R Archive Network (CRAN). URL: https://hsbadr.github.io/additive/.

Contributing

This project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.

About

Bindings for Additive TidyModels

Topics

Resources

License

Unknown, MIT licenses found

Licenses found

Unknown
LICENSE
MIT
LICENSE.md

Code of conduct

Contributing

Stars

Watchers

Forks

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages

Morty Proxy This is a proxified and sanitized view of the page, visit original site.