Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also .

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also .
base repository: stefanocoretta/tidymv
Choose a Base Repository
Nothing to show
base: v1.5.4
head repository: stefanocoretta/tidymv
Choose a Head Repository
Nothing to show
compare: v2.0.0
@@ -1,3 +1,5 @@
^Meta$
^doc$
^.*\.Rproj$
^\.Rproj\.user$
^NEWS\.md$
@@ -1,3 +1,5 @@
Meta
doc
.Rproj.user
.Rhistory
.RData
@@ -1,12 +1,13 @@
Package: tidymv
Type: Package
Title: Tidy Model Visualisation
Version: 1.5.4
Date: 2018-12-05
Title: Plotting for generalised additive models
Version: 2.0.0
Date: 2019-01-10
Authors@R: person("Stefano", "Coretta", email = paste0("stefano.coretta", "@", "gmail.com"),
role = c("aut", "cre"))
Description: This package provides functions for model visualisation using tidy
tools from the tidyverse.
Description: This package provides functions for visualising generalised
additive models and get predicted values using tidy tools from the tidyverse.
The name stands for TIDY Model Visualisation.
URL: https://github.com/stefanocoretta/tidymv
BugReports: https://github.com/stefanocoretta/tidymv/issues
License: MIT + file LICENSE
@@ -18,7 +19,9 @@ Imports: cowplot,
ggplot2,
itsadug,
magrittr,
mgcv,
rlang,
tibble,
tidyr
Suggests: knitr,
rmarkdown
@@ -1,10 +1,12 @@
# Generated by roxygen2: do not edit by hand

export(create_event_start)
export(create_start_event)
export(geom_smooth_ci)
export(get_gam_predictions)
export(plot_difference)
export(plot_gamsd)
export(plot_smooths)
export(predict_gam)
importFrom(magrittr,"%>%")
importFrom(rlang,":=")
importFrom(rlang,"quo_name")
15 NEWS.md
@@ -1,5 +1,18 @@
# Change Log

## [2.0.0] - 2019-01-10
### Added
- `predict_gam()` to return a dataframe with all predictors and fitted values with standard error
- `geom_smooth_ci()` which provides a new `ggplot2` `geom` to conveniently plot smooths and confidence intervals from the output of `predict_gam()`
- vignette that illustrates how to use the new functions
- examples in the documentation

### Changed
- name, arguments, and output of `create_event_start()` (> `create_start_event()`, it breaks backward compatibility)

### Removed
- `plot_gamsd()` (use `plot_smooths()` and `plot_difference()`)

## [1.5.4] - 2018-12-05
### Changed
- README now uses new `install_github` argument for building vignettes
@@ -96,6 +109,8 @@
- `create_start_event` function
- `plot_gamsd` function

[2.0.0]: https://github.com/stefanocoretta/tidymv/compare/v1.5.4...v2.0.0
[1.5.4]: https://github.com/stefanocoretta/tidymv/compare/v1.5.3...v1.5.4
[1.5.3]: https://github.com/stefanocoretta/tidymv/compare/v1.5.2...v1.5.3
[1.5.2]: https://github.com/stefanocoretta/tidymv/compare/v1.5.1...v1.5.2
[1.5.1]: https://github.com/stefanocoretta/tidymv/compare/v1.5.0...v1.5.1

No commit comments for this range

You can’t perform that action at this time.