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(), 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 cols to print.

...

Not used.

Value

Invisible x.

Examples

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


slideimp documentation built on April 17, 2026, 1:07 a.m.