Skip to content

Commit

Permalink
add revdep
Browse files Browse the repository at this point in the history
  • Loading branch information
jrhub committed Feb 23, 2024
1 parent 846f684 commit ef7f484
Show file tree
Hide file tree
Showing 10 changed files with 102 additions and 9 deletions.
1 change: 1 addition & 0 deletions .Rbuildignore
Expand Up @@ -10,3 +10,4 @@
^CRAN-RELEASE$
^codecov\.yml$
^\.github$
^revdep$
8 changes: 5 additions & 3 deletions R/BVSelection.R
Expand Up @@ -18,9 +18,11 @@
#'
#' @rdname BVSelection
#' @return an object of class "BVSelection" is returned, which is a list with components:
#' \item{method}{method used for identifying important effects}
#' \item{indices}{a list of indices and names of selected variables}
#' \item{summary}{a summary of selected variables}
#' \itemize{
#' \item method: method used for identifying important effects
#' \item indices: a list of indices and names of selected variables
#' \item summary: a summary of selected variables
#' }
#'
#' @seealso \code{\link{BVCfit}}
#'
Expand Down
8 changes: 5 additions & 3 deletions man/BVSelection.Rd

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

7 changes: 7 additions & 0 deletions revdep/.gitignore
@@ -0,0 +1,7 @@
checks
library
checks.noindex
library.noindex
cloud.noindex
data.sqlite
*.html
72 changes: 72 additions & 0 deletions revdep/README.md
@@ -0,0 +1,72 @@
# Platform

|field |value |
|:--------|:------------------------------------------------------------------------------------|
|version |R version 4.3.2 (2023-10-31 ucrt) |
|os |Windows 11 x64 (build 22621) |
|system |x86_64, mingw32 |
|ui |RStudio |
|language |(EN) |
|collate |English_United States.utf8 |
|ctype |English_United States.utf8 |
|tz |America/Indianapolis |
|date |2024-02-22 |
|rstudio |2023.12.1+402 Ocean Storm (desktop) |
|pandoc |3.1.1 @ C:/Program Files/RStudio/resources/app/bin/quarto/bin/tools/ (via rmarkdown) |

# Dependencies

|package |old |new |Δ |
|:-------------|:----------|:----------|:--|
|spinBayes |0.1.0 |0.2.0 |* |
|brio |NA |1.1.4 |* |
|callr |NA |3.7.5 |* |
|cli |NA |3.6.2 |* |
|colorspace |NA |2.1-0 |* |
|crayon |NA |1.5.2 |* |
|desc |NA |1.4.3 |* |
|diffobj |NA |0.3.5 |* |
|digest |NA |0.6.34 |* |
|evaluate |NA |0.23 |* |
|fansi |NA |1.0.6 |* |
|farver |NA |2.1.1 |* |
|foreach |1.5.2 |1.5.2 | |
|fs |NA |1.6.3 |* |
|ggplot2 |NA |3.4.4 |* |
|glmnet |4.1-8 |4.1-8 | |
|glue |NA |1.7.0 |* |
|gtable |NA |0.3.4 |* |
|isoband |NA |0.2.7 |* |
|iterators |1.0.14 |1.0.14 | |
|jsonlite |NA |1.8.8 |* |
|labeling |NA |0.4.3 |* |
|lifecycle |NA |1.0.4 |* |
|magrittr |NA |2.0.3 |* |
|munsell |NA |0.5.0 |* |
|pillar |NA |1.9.0 |* |
|pkgbuild |NA |1.4.3 |* |
|pkgconfig |NA |2.0.3 |* |
|pkgload |NA |1.3.4 |* |
|praise |NA |1.0.0 |* |
|processx |NA |3.8.3 |* |
|ps |NA |1.7.6 |* |
|R6 |NA |2.5.1 |* |
|RColorBrewer |NA |1.1-3 |* |
|Rcpp |1.0.12 |1.0.12 | |
|RcppArmadillo |0.12.8.0.0 |0.12.8.0.0 | |
|RcppEigen |0.3.3.9.4 |0.3.3.9.4 | |
|rematch2 |NA |2.1.2 |* |
|rlang |NA |1.1.3 |* |
|rprojroot |NA |2.0.4 |* |
|scales |NA |1.3.0 |* |
|shape |1.4.6 |1.4.6 | |
|testthat |NA |3.2.1 |* |
|tibble |NA |3.2.1 |* |
|utf8 |NA |1.2.4 |* |
|vctrs |NA |0.6.5 |* |
|viridisLite |NA |0.4.2 |* |
|waldo |NA |0.5.2 |* |
|withr |NA |3.0.0 |* |

# Revdeps

7 changes: 7 additions & 0 deletions revdep/cran.md
@@ -0,0 +1,7 @@
## revdepcheck results

We checked 0 reverse dependencies, comparing R CMD check results across CRAN and dev versions of this package.

* We saw 0 new problems
* We failed to check 0 packages

1 change: 1 addition & 0 deletions revdep/failures.md
@@ -0,0 +1 @@
*Wow, no problems at all. :)*
1 change: 1 addition & 0 deletions revdep/problems.md
@@ -0,0 +1 @@
*Wow, no problems at all. :)*
Binary file modified spinBayes.pdf
Binary file not shown.
6 changes: 3 additions & 3 deletions src/test-utilities.cpp
Expand Up @@ -13,7 +13,7 @@ context("mvrnormCpp") {
sigmaSq(0,0) = -1;
expect_error_as(mvrnormCpp(mean, sigmaSq), std::runtime_error);
}

test_that("non-positive definite covariance matrix") {
arma::vec mean(4,fill::zeros);
arma::mat X(3, 4, fill::randu);
Expand All @@ -22,5 +22,5 @@ context("mvrnormCpp") {
arma::vec out = mvrnormCpp(mean, sigmaSq, 0.1);
expect_true(out.n_elem == 4);
}
}

}

0 comments on commit ef7f484

Please sign in to comment.