Skip to content

Commit

Permalink
3.17-34
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderrobitzsch committed Oct 20, 2023
1 parent ee4502a commit 2954120
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 9 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Package: miceadds
Type: Package
Title: Some Additional Multiple Imputation Functions, Especially for 'mice'
Version: 3.17-33
Date: 2023-10-19 14:22:59.71054
Version: 3.17-34
Date: 2023-10-20 20:14:09.576992
Author:
Alexander Robitzsch [aut,cre] (<https://orcid.org/0000-0002-8226-3132>),
Simon Grund [aut] (<https://orcid.org/0000-0002-1290-8986>),
Expand Down
2 changes: 1 addition & 1 deletion R/RcppExports.R
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## File Name: RcppExports.R
## File Version: 3.017033
## File Version: 3.017034
# Generated by using Rcpp::compileAttributes() -> do not edit by hand
# Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393

Expand Down
5 changes: 3 additions & 2 deletions R/mice.1chain.R
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## File Name: mice.1chain.R
## File Version: 0.669
## File Version: 0.672

#*** apply mice algorithm in a single chain
mice.1chain <- function(data, burnin=10, iter=20, Nimp=10,
Expand Down Expand Up @@ -59,7 +59,8 @@ mice.1chain <- function(data, burnin=10, iter=20, Nimp=10,
implist[[mm+1]] <- imp1 <- mice::mice( data, maxit=maxit_temp, m=1,
method=method, where=where, visitSequence=visitSequence,
blots=blots, post=post, defaultMethod=defaultMethod,
printFlag=printFlag, seed=seed, data.init=data.init, ... )
printFlag=printFlag, seed=seed,
data.init=mice::complete(implist[[mm]], action=1), ... )
datlist[[mm]] <- dat0 <- mice::complete( imp1, 1 )
chainMean <- rbind( chainMean, t( imp1$chainMean[,,1] ) )
chainVar <- rbind( chainVar, t( imp1$chainVar[,,1] ) )
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ The CRAN version can be installed from within R using:
utils::install.packages("miceadds")
```

#### GitHub version `miceadds` 3.17-33 (2023-10-19)
#### GitHub version `miceadds` 3.17-34 (2023-10-20)

[![](https://img.shields.io/badge/github%20version-3.17--33-orange.svg)](https://github.com/alexanderrobitzsch/miceadds)&#160;&#160;
[![](https://img.shields.io/badge/github%20version-3.17--34-orange.svg)](https://github.com/alexanderrobitzsch/miceadds)&#160;&#160;

The version hosted [here](https://github.com/alexanderrobitzsch/miceadds) is the development version of `miceadds`.
The GitHub version can be installed from within R using:
Expand Down
3 changes: 2 additions & 1 deletion inst/NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,13 @@ CHANGELOG miceadds


--------------------------------------------------------------------------
VERSIONS miceadds 3.17 | 2023-10-19 | Last: miceadds 3.17-33
VERSIONS miceadds 3.17 | 2023-10-20 | Last: miceadds 3.17-34
--------------------------------------------------------------------------

ADDED * added argument 'derived_vars' in mice.impute.pls() for including
derived variables in PLS dimension reduction
(requested by Karoline Sachse)
FIXED * fixed specification issues in mice.1chain()


DATA * ---
Expand Down
2 changes: 1 addition & 1 deletion src/RcppExports.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//// File Name: RcppExports.cpp
//// File Version: 3.017033
//// File Version: 3.017034
// Generated by using Rcpp::compileAttributes() -> do not edit by hand
// Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393

Expand Down

0 comments on commit 2954120

Please sign in to comment.