Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: modelbpp
Title: Model BIC Posterior Probability
Version: 0.2.0.4
Version: 0.2.0.5
Authors@R:
c(person(given = "Shu Fai",
family = "Cheung",
Expand Down
6 changes: 5 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# modelbpp 0.2.0.4
# modelbpp 0.2.0.5

## Miscellaneous

Expand All @@ -23,6 +23,10 @@
- `gen_models()` now correctly handles
`cross_add = NULL`. (0.2.0.3)

- `identical_partables()` now correctly
ignores `ustart` for free parameters.
(0.2.0.5)

# modelbpp 0.2.0

## New Features
Expand Down
4 changes: 2 additions & 2 deletions R/partables_helpers.R
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ identical_partables <- function(object1,
}
if (!is.null(tmp1$ustart) &&
!is.null(tmp2$ustart)) {
tmp1u <- tmp1[which(tmp1$ustart > 0), ]
tmp2u <- tmp2[which(tmp2$ustart > 0), ]
tmp1u <- tmp1[which((tmp1$ustart > 0) & (tmp1$free == 0)), ]
tmp2u <- tmp2[which((tmp2$ustart > 0) & (tmp2$free == 0)), ]
if (!identical(tmp1u$start,
tmp2u$start)) {
return(FALSE)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

# modelbpp: Model BIC Posterior Probability <img src="man/figures/logo.png" align="right" />

(Version 0.2.0.4 updated on 2026-03-31, [release history](https://sfcheung.github.io/modelbpp/news/index.html))
(Version 0.2.0.5 updated on 2026-03-31, [release history](https://sfcheung.github.io/modelbpp/news/index.html))

This package is for assessing model uncertainty in structural
equation modeling (SEM) by the BIC posterior
Expand Down
Loading