Skip to content

Commit

Permalink
Merge branch 'master' of github.com:pat-s/oddsratio
Browse files Browse the repository at this point in the history
  • Loading branch information
pat-s committed Sep 10, 2018
2 parents 30721f3 + d5792a9 commit 59a7fc9
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 23 deletions.
6 changes: 3 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: oddsratio
Version: 1.0.3
Date: 2018-06-19
Title: Odds ratio calculation for GAM(M)s & GLM(M)s
Date: 2018-07-15
Title: Odds Ratio Calculation for GAM(M)s & GLM(M)s
Authors@R: c(
person("Patrick", "Schratz", ,
email = "[email protected]",
Expand All @@ -21,7 +21,7 @@ Depends: R (>= 3.0.0)
Imports: mgcv,
MASS,
stats,
ggplot2 (>= 2.2.1),
ggplot2 (>= 3.0.0),
cowplot
License: MIT + file LICENSE
RoxygenNote: 6.0.1
Expand Down
2 changes: 1 addition & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
oddsratio 1.0.3 (June 19 2018)
--------------------------------------------------------------------------------

* update functions to work with ggplot2 v2.3.0
* update functions to work with ggplot2 v3.0.0

oddsratio 1.0.2 (December 08 2017)
--------------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# oddsratio 1.0.3 (June 19 2018)

* update functions to work with ggplot2 v2.3.0
* update functions to work with ggplot2 v3.0.0

# oddsratio 1.0.2 (December 08 2017)

Expand Down
2 changes: 1 addition & 1 deletion R/or_glm.R
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#'
#' @details `CI_low` and `CI_high` are only calculated for GLM models because
#' [glmmPQL] does not return confident intervals due to its penalizing
#' behaviour.
#' behavior.
#'
#' @author Patrick Schratz <[email protected]>
#'
Expand Down
5 changes: 1 addition & 4 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Test environments

* local Arch Linux installation, R 3.5.0
* local Arch Linux installation, R 3.5.1
* ubuntu 14.04 (on travis-ci), R-devel
* OSX 10.12, Xcode 8.3 (on travis-ci), R-devel
* win-builder (devel and release)
Expand All @@ -16,6 +16,3 @@ There are no reverse dependencies.
## Downstream dependencies

"There are currently no downstream dependencies for this package”


Update for upcoming ggplot2 v2.3.0 release
2 changes: 1 addition & 1 deletion man/or_glm.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file removed revdep/checks.rds
Binary file not shown.
24 changes: 12 additions & 12 deletions tic.R
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,26 @@ if (Sys.getenv("NB") != "w/ covr" | Sys.getenv("NB") != "w/ lintr") {
}

if (Sys.getenv("id_rsa") != "") {

get_stage("before_deploy") %>%
add_step(step_setup_ssh())

get_stage("deploy") %>%
add_step(step_build_pkgdown()) %>%
add_step(step_push_deploy(orphan = TRUE, path = "docs", branch = "gh-pages"))
}
add_step(step_push_deploy(path = "docs", branch = "gh-pages"))

}

if (Sys.getenv("NB") == "w/ covr" | Sys.getenv("NB") == "w/ lintr") {

if (Sys.getenv("NB") == "w/ lintr") {
get_stage("after_success") %>%
step_run_code(lintr::lint_package(linters = with_defaults(commented_code_linter = NULL,
closed_curly_linter = closed_curly_linter(allow_single_line = TRUE),

get_stage("after_success") %>%
step_run_code(lintr::lint_package(linters = with_defaults(commented_code_linter = NULL,
closed_curly_linter = closed_curly_linter(allow_single_line = TRUE),
open_curly_linter = open_curly_linter(allow_single_line = TRUE))))
} else {
get_stage("after_success") %>%
get_stage("after_success") %>%
step_run_code(covr::codecov(quiet = FALSE))
}
}
}

0 comments on commit 59a7fc9

Please sign in to comment.