print.slideimp_tbl: Print a 'slideimp_tbl' Object

View source: R/print.R

print.slideimp_tblR Documentation

Print a slideimp_tbl Object

Description

Print slideimp_tbl objects (which inherit data.frame) with nicer looking list-columns (similar to tibble).

Usage

## S3 method for class 'slideimp_tbl'
print(x, n = NULL, ...)

Arguments

x

A slideimp_tbl object.

n

Number of rows to show. Defaults to 10.

...

Not used.

Value

Invisible x.

Examples

mat <- sim_mat(n = 10, p = 500)
set.seed(1234)
results <- tune_imp(mat$input, parameters = data.frame(k = 5), .f = "knn_imp")
class(results)
print(results)


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