repr_*.matrix/data.frame {repr}R Documentation

Tabular data representations

Description

HTML and LaTeX representations of Matrix-like objects

Usage

## S3 method for class 'matrix'
repr_html(obj, ...)

## S3 method for class 'data.frame'
repr_html(obj, ...)

## S3 method for class 'matrix'
repr_latex(obj, ...,
  colspec = getOption("repr.matrix.latex.colspec"))

## S3 method for class 'data.frame'
repr_latex(obj, ...,
  colspec = getOption("repr.matrix.latex.colspec"))

## S3 method for class 'matrix'
repr_markdown(obj, ...)

## S3 method for class 'data.frame'
repr_markdown(obj, ...)

## S3 method for class 'matrix'
repr_text(obj, ...)

## S3 method for class 'data.frame'
repr_text(obj, ...)

Arguments

obj

The matrix or data.frame to create a representation for

...

ignored

colspec

The colspec for the LaTeX table. The default is given by the option repr.matrix.latex.colspec

See Also

repr-options for repr.matrix.latex.colspec


[Package repr version 0.13 Index]