Skip to content

Commit 1e3e8ae

Browse files
committed
update meta files
1 parent a4784d2 commit 1e3e8ae

File tree

5 files changed

+15
-14
lines changed

5 files changed

+15
-14
lines changed

DESCRIPTION

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
Package: brms
22
Type: Package
33
Title: Bayesian Regression Models using Stan
4-
Version: 0.4.1.9001
5-
Date: 2015-09-03
4+
Version: 0.5.0
5+
Date: 2015-09-11
66
Authors@R: person("Paul-Christian", "Buerkner", email = "[email protected]",
77
role = c("aut", "cre"))
88
Depends: R (>= 3.1.0), rstan (>= 2.7.0), ggplot2 (>= 1.0.1)
99
Imports: loo (>= 0.1.2), shinystan (>= 2.0.0), gridExtra (>= 2.0.0), abind,
1010
methods, stats, parallel, grDevices, grid
11-
Suggests: testthat (>= 0.9.1)
11+
Suggests: testthat (>= 0.9.1), R.rsp
1212
Description: Fit Bayesian generalized linear mixed models using Stan for full Bayesian inference.
1313
LazyData: true
1414
NeedsCompilation: no
1515
License: GPL (>= 3)
1616
URL: http://github.com/paul-buerkner/brms
1717
BugReports: http://github.com/paul-buerkner/brms/issues
18+
VignetteBuilder: R.rsp

NAMESPACE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ S3method(residuals,brmsfit)
3131
S3method(stancode,brmsfit)
3232
S3method(standata,brmsfit)
3333
S3method(summary,brmsfit)
34+
S3method(vcov,brmsfit)
3435
export(LOO)
3536
export(VarCorr)
3637
export(WAIC)

News.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,21 @@ title: "News"
33
output: html_document
44
---
55

6-
# under development
6+
# brms 0.5.0
77
----------------------------------------------------------------
88

99
## new features
10-
* compute the Watanabe-Akaike information criterion (WAIC) and the leave-one-out cross-validation (LOO) using the loo package.
10+
* compute the Watanabe-Akaike information criterion (WAIC) and leave-one-out cross-validation (LOO) using the loo package.
1111
* provide an interface to shinystan with S3 method 'launch_shiny'.
1212
* new functions 'get\_prior' and 'set\_prior' to make prior specifications easier.
13-
* log-likelihood values and posterior predictive samples can now be calculated after the model has been fitted.
13+
* log-likelihood values and posterior predictive samples can now be calculated within R after the model has been fitted.
1414
* make predictions based on new data using S3 method 'predict'.
15-
* allow for customized covariance structures of grouping factors with multiple random effects
15+
* allow for customized covariance structures of grouping factors with multiple random effects.
1616
* new S3 methods 'fitted' and 'residuals' to compute fitted values and residuals, respectively.
1717

1818
## other changes
19-
* arguments WAIC and predict are removed from function brm as they are no longer necessary.
19+
* arguments 'WAIC' and 'predict' are removed from function 'brm' as they are no longer necessary.
20+
* new argument 'cluster_type' in function 'brm' allowing to choose the cluster type created by the parallel package
2021
* remove chains that fail to initialize while sampling in parallel leaving the other chains untouched.
2122
* redesign trace and density plots to be faster and more stable.
2223
* S3 method 'VarCorr' now always returns covariance matrices regardless of whether correlations were estimated.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ methods(class = "brmsfit")
8383
#> [9] ngrps nobs parnames plot
8484
#> [13] posterior_samples predict print prior_samples
8585
#> [17] ranef residuals stancode standata
86-
#> [21] summary VarCorr WAIC
86+
#> [21] summary VarCorr vcov WAIC
8787
#> see '?methods' for accessing help and source code
8888
```
8989

cran-comments.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
1-
This is an update to fix a critical bug.
2-
31
## Test environments
4-
* local Windows 8.1 install, R 3.2.0, R 3.3.0
2+
* local Windows 8.1 install, R 3.2.2, R 3.3.0
53
* win-builder (devel and release)
6-
* ubuntu 12.04, R 3.2.0
7-
* local OS X install, R 3.2.0
4+
* ubuntu 12.04, R 3.2.2
5+
* local OS X install, R 3.2.2
86

97
## R CMD check results
108
There were no ERRORs, WARNINGs or NOTEs.

0 commit comments

Comments
 (0)