-
Notifications
You must be signed in to change notification settings - Fork 1
/
DESCRIPTION
30 lines (30 loc) · 1.16 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Package: ClustImpute
Type: Package
Title: K-Means Clustering with Build-in Missing Data Imputation
Version: 0.2.4
Author: Oliver Pfaffel
Maintainer: Oliver Pfaffel <[email protected]>
Description: This k-means algorithm is able to cluster data with missing values and as a by-product completes the data set. The implementation can deal with missing values in multiple variables and is computationally efficient since it iteratively uses the current cluster assignment to define a plausible distribution for missing value imputation. Weights are used to shrink early random draws for missing values (i.e., draws based on the cluster assignments after few iterations) towards the global mean of each feature. This shrinkage slowly fades out after a fixed number of iterations to reflect the increasing credibility of cluster assignments. See the vignette for details.
License: GPL-3
Encoding: UTF-8
Imports:
ClusterR,
copula,
dplyr,
magrittr,
tidyr,
ggplot2,
rlang,
knitr
Suggests:
ggExtra,
rmarkdown,
testthat (>= 2.1.0),
Hmisc,
tictoc,
spelling,
corrplot,
covr
VignetteBuilder: knitr
RoxygenNote: 7.1.0
Language: en-US