The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.
koma is an R package for Bayesian estimation of simultaneous equation models (SEMs) using Metropolis-within-Gibbs Markov Chain Monte Carlo (MCMC) methods.
⚠️ Beta Release:
komais under active development. The user-facing API may still change before the first CRAN release. Core features are working but exported functions may change and bugs are possible. Please report issues on GitHub.
Install the released version from CRAN:
install.packages("koma")Or install the latest development version from GitHub:
# Install from GitHub
devtools::install_github("timothymerlin/koma")
# Or using renv
renv::install("github::timothymerlin/koma", rebuild = TRUE)Increment the package version using usethis:
# Increment the version number (patch/minor/major)
usethis::use_version()This updates the DESCRIPTION file.
After updating the version:
# Stage all changes
git add .
# Commit with a clear message
git commit -m "Incrementing version to x.x.x"
# Tag the release (protected)
git tag x.x.x
# Tag the latest release (unprotected, movable)
git tag -f latestx.x.x is the new semantic version
(e.g. 0.1.0).x.x.x) are immutable to ensure
release integrity.latest is an uprotected tag that can be moved to point
to the newest release.# Push commits
git push
# Push both tags
git push origin --tagsThese binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.