Prints a structured summary of an impute_result object, including
the dimensions of the imputed dataset, a preview of the imputed data,
cluster composition, and which optional components are present.
Usage
# S3 method for class 'impute_result'
print(x, n = 6, ...)
Arguments
- x
An object of class impute_result.
- n
Integer. Number of rows of the imputed dataset to preview.
Defaults to 6.
- ...
Further arguments passed to or from other methods (currently
unused).
Examples
# \donttest{
try({
res <- ciss_vae(data = my_data, ...)
print(res) # default: 6 row preview
print(res, n = 10)
})
#> Error in ciss_vae(data = my_data, ...) :
#> could not find function "ciss_vae"
# }