An open API service indexing awesome lists of open source software.

https://github.com/stefanocoretta/tidygam


https://github.com/stefanocoretta/tidygam

r-package rstats software

Last synced: 4 months ago
JSON representation

Awesome Lists containing this project

README

          

---
output: github_document
---

```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```

# tidygam: Tidy Prediction and Plotting of Generalised Additive Models

`r badger::badge_cran_release("tidygam", "blue")`
`r badger::badge_cran_checks("tidygam")`
`r badger::badge_devel(color = "orange")`

With tidygam, users can more easily obtain predictions from Generalised Additive Models (GAMs) and plot them, using tidyverse tools.

## Installation

You can install the latest release of tidygam from [GitHub](https://github.com/) with:

``` r
# install.packages("remotes")
remotes::install_github("stefanocoretta/tidygam@v1.0.0")
```

Alternatively, you can install the development version:

``` r
# install.packages("remotes")
remotes::install_github("stefanocoretta/tidygam@devel")
```

## Examples

For examples, see the `Get started` vignette and the documentation of `predict_gam()` and `plot.tidygam()`.