Learn R Programming

formatters (version 0.5.11)

num_rep_cols: Number of repeated columns

Description

When called on a table-like object using the formatters framework, this method returns the number of columns which are mandatorily repeated after each horizontal pagination.

Usage

num_rep_cols(obj)

# S4 method for ANY num_rep_cols(obj)

# S4 method for MatrixPrintForm num_rep_cols(obj)

num_rep_cols(obj) <- value

# S4 method for ANY num_rep_cols(obj) <- value

# S4 method for MatrixPrintForm num_rep_cols(obj) <- value

Value

An integer.

Arguments

obj

(ANY)
a table-like object.

value

(numeric(1))
the new number of columns to repeat.

Details

Absent a class-specific method, this function returns 0, indicating no always-repeated columns.

Examples

Run this code
mpf <- basic_matrix_form(mtcars)
num_rep_cols(mpf)
lmpf <- basic_listing_mf(mtcars)
num_rep_cols(lmpf)

Run the code above in your browser using DataLab