1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/repr_matrix_df.r
\name{repr_*.matrix/data.frame}
\alias{repr_*.matrix/data.frame}
\alias{repr_html.matrix}
\alias{repr_html.data.frame}
\alias{repr_latex.matrix}
\alias{repr_latex.data.frame}
\alias{repr_markdown.matrix}
\alias{repr_markdown.data.frame}
\alias{repr_text.matrix}
\alias{repr_text.data.frame}
\title{Tabular data representations}
\usage{
\method{repr_html}{matrix}(
obj,
...,
rows = getOption("repr.matrix.max.rows"),
cols = getOption("repr.matrix.max.cols")
)
\method{repr_html}{data.frame}(
obj,
...,
rows = getOption("repr.matrix.max.rows"),
cols = getOption("repr.matrix.max.cols")
)
\method{repr_latex}{matrix}(
obj,
...,
rows = getOption("repr.matrix.max.rows"),
cols = getOption("repr.matrix.max.cols"),
colspec = getOption("repr.matrix.latex.colspec")
)
\method{repr_latex}{data.frame}(
obj,
...,
rows = getOption("repr.matrix.max.rows"),
cols = getOption("repr.matrix.max.cols"),
colspec = getOption("repr.matrix.latex.colspec")
)
\method{repr_markdown}{matrix}(
obj,
...,
rows = getOption("repr.matrix.max.rows"),
cols = getOption("repr.matrix.max.cols")
)
\method{repr_markdown}{data.frame}(
obj,
...,
rows = getOption("repr.matrix.max.rows"),
cols = getOption("repr.matrix.max.cols")
)
\method{repr_text}{matrix}(
obj,
...,
rows = getOption("repr.matrix.max.rows"),
cols = getOption("repr.matrix.max.cols")
)
\method{repr_text}{data.frame}(
obj,
...,
rows = getOption("repr.matrix.max.rows"),
cols = getOption("repr.matrix.max.cols")
)
}
\arguments{
\item{obj}{The matrix or data.frame to create a representation for}
\item{...}{ignored}
\item{rows}{The maximum number of rows displayed. The default is given by the option \code{repr.matrix.max.rows}}
\item{cols}{The maximum number of columns displayed. The default is given by the option \code{repr.matrix.max.cols}}
\item{colspec}{The colspec for the LaTeX table. The default is given by the option \code{repr.matrix.latex.colspec}}
}
\description{
HTML, LaTeX, and Markdown representations of Matrix-like objects
}
\seealso{
\link{repr-options} for \code{repr.matrix.latex.colspec}
}
|