print: Print 'html_matrix'

print.html_matrixR Documentation

Print html_matrix

Description

Prints an HTML matrix content or its components.

Usage

## S3 method for class 'html_matrix'
print(x, ..., which = "")

Arguments

x

an html_matrix object

...

further parameters

which

character: which component to print (default: "")

Value

An invisible character matrix.

Examples

m <- matrix(1:6, ncol=2)
l <- html_matrix_sk(m, title="1 to 6", fmt=rep("%f",ncol(m)))
print(l, which=NA)      # returns full style information
print(l, which="fmt")   # returns format information
print(l, which="value") # identical to print(l)

exams.forge documentation built on Sept. 11, 2024, 5:32 p.m.