R package to compute estimates and their errors for Austrian Microcensus data.
With the devtools package the mzR package can be installed directly with
devtools::install_github("statistikat/mzR", build_opts = c("--no-resave-data"))In this case, due to package dependencies, you might have to install some R
packages which are necessary for mzR to run (see help(install.packages)
for instructions). The development version of the package can also be checked
out from https://github.com/statistikat/mzR and then installed manually.
Internal development: After a checkout from the internal bitbucket,
configure the internal repository as origin and Github as a second remote:
git remote set-url origin ssh://git@gitrepo:7999/mz/basis_mzr.git
git remote add github https://github.com/statistikat/mzR.gitPull and push the current branch from both remotes to keep them synchronised:
branch=$(git branch --show-current)
git pull --ff-only origin "$branch"
git pull --ff-only github "$branch"
git push origin "$branch"
git push github "$branch"You can find examples for getting started with mzR by reading the introduction vignette.
vignette("mzR")This vignette is also available online under http://statistikat.github.io/mzR/articles/mzR.html
Please report all issues, bugs or feature requests to the github issue tracking system https://github.com/statistikat/mzR/issues.