Skip to content

Commit

Permalink
start new version
Browse files Browse the repository at this point in the history
  • Loading branch information
merliseclyde committed Apr 19, 2023
1 parent 904d8bf commit 013a8c0
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Package: bark
Type: Package
Title: Bayesian Additive Regression Kernels
Version: 1.0.4
Date: 2023-04-17
Version: 1.0.5
Date: 2023-04-19
Authors@R: c(person("Merlise", "Clyde", email="clyde@stat.duke.edu",
role=c("aut","cre", "ths"),
comment=c("ORCID=0000-0002-3595-1872")
Expand Down
2 changes: 2 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# bark 1.0.5

# bark 1.0.4

* archived on 3/31 due to unit test failure on MKL with R-devel gcc
Expand Down
2 changes: 1 addition & 1 deletion R/update-beta.R
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ updatebeta <- function(y, # response varaible continuous/[0/1] depend o
XX <- matrix(fullXX[, theta$nvec>0], ncol=sum(theta$nvec>0));
}
varphiovern <- theta$varphi[theta$nvec>0]/theta$nvec[theta$nvec>0]^2;
evv <- eigen(t(XX)%*%XX, symmetric=TRUE, EISPACK=TRUE);
evv <- eigen(t(XX)%*%XX, symmetric=TRUE);
ivals <- 1/(theta$phi*evv$values + varphiovern);
if(dim(XX)[2] == 1){
Sigma <- 1/(theta$phi*t(XX)%*%XX + varphiovern);
Expand Down
2 changes: 1 addition & 1 deletion cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# bark 1.0.4 Comments to CRAN
# bark 1.0.5 Comments to CRAN

Package archived on 3/31 due to CRAN check failiure on MKL (R-devel) due
to unit test.
Expand Down

0 comments on commit 013a8c0

Please sign in to comment.