Here it is my reprex:
library(missForest)
#> Loading required package: randomForest
#> randomForest 4.6-14
#> Type rfNews() to see new features/changes/bug fixes.
#> Loading required package: foreach
#> Loading required package: itertools
#> Loading required package: iterators
df<-data.frame(
V3 = c(0, 4.46, 0.5, 1.54, 5.625),
V8 = c(1.25, 3.04, 1.5, 3.75, 1.71),
V11 = c(1L, 6L, 0L, 5L, 0L),
V15 = c(0L, 560L, 824L, 3L, 0L),
header = c(FALSE, FALSE, FALSE, FALSE, FALSE),
V1 = as.factor(c("b", "a", "a", "b", "b")),
V2 = as.factor(c("30.83", "58.67", "24.50", "27.83", "20.17")),
V4 = as.factor(c("u", "u", "u", "u", "u")),
V5 = as.factor(c("g", "g", "g", "g", "g")),
V6 = as.factor(c("w", "q", "q", "w", "w")),
V7 = as.factor(c("v", "h", "h", "v", "v")),
V9 = as.factor(c("t", "t", "t", "t", "t")),
V10 = as.factor(c("t", "t", "f", "t", "f")),
V12 = as.factor(c("f", "f", "f", "t", "f")),
V13 = as.factor(c("g", "g", "g", "g", "s")),
V14 = as.factor(c("00202", "00043", "00280", "00100", "00120")),
V16 = as.factor(c("+", "+", "+", "+", "+"))
)
new.credits<-missForest(df)
#> missForest iteration 1 in progress...done!
#> missForest iteration 2 in progress...done!
summary(new.credits$ximp)
#> V3 V8 V11 V15 header
#> Min. :0.000 Min. :1.25 Min. :0.0 Min. : 0.0 Min. :0
#> 1st Qu.:0.500 1st Qu.:1.50 1st Qu.:0.0 1st Qu.: 0.0 1st Qu.:0
#> Median :1.540 Median :1.71 Median :1.0 Median : 3.0 Median :0
#> Mean :2.425 Mean :2.25 Mean :2.4 Mean :277.4 Mean :0
#> 3rd Qu.:4.460 3rd Qu.:3.04 3rd Qu.:5.0 3rd Qu.:560.0 3rd Qu.:0
#> Max. :5.625 Max. :3.75 Max. :6.0 Max. :824.0 Max. :0
#> V1 V2 V4 V5 V6 V7 V9 V10 V12 V13 V14
#> a:2 20.17:1 u:5 g:5 q:2 h:2 t:5 f:2 f:4 g:4 00043:1
#> b:3 24.50:1 w:3 v:3 t:3 t:1 s:1 00100:1
#> 27.83:1 00120:1
#> 30.83:1 00202:1
#> 58.67:1 00280:1
#>
#> V16
#> +:5
#>
#>
#>
#>
#>
Created on 2019-03-19 by the reprex package (v0.2.1)