print.slideimp_results: Print a 'slideimp_results' Object

View source: R/print.R

print.slideimp_resultsR Documentation

Print a slideimp_results Object

Description

Print the output of knn_imp(), pca_imp(), group_imp(), or slide_imp().

Usage

## S3 method for class 'slideimp_results'
print(x, n = 6L, p = 6L, ...)

Arguments

x

A slideimp_results object.

n

Number of rows to print.

p

Number of columns to print.

...

Not used.

Value

x, invisibly.

Examples

set.seed(1234)
mat <- sim_mat(n = 10, p = 10)
result <- knn_imp(mat$input, k = 5, .progress = FALSE)
class(result)
print(result, n = 6, p = 6)


slideimp documentation built on June 17, 2026, 1:08 a.m.