File: repr-options.Rd

package info (click to toggle)
r-cran-repr 0.19.2-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 324 kB
  • sloc: sh: 10; makefile: 2
file content (62 lines) | stat: -rw-r--r-- 2,640 bytes parent folder | download
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
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/options.r
\docType{data}
\name{repr-options}
\alias{repr-options}
\alias{repr_option_defaults}
\title{repr options}
\format{An object of class \code{list} of length 14.}
\usage{
repr_option_defaults
}
\description{
These options are used to control the behavior of repr when not calling it directly. Use \code{\link[base]{options}(repr.* = ...)} and \code{\link[base]{getOption}('repr.*')} to set and get them, respectively.
}
\details{
Once this package is loaded, all options are set to defaults which weren’t set beforehand.

Setting all options set to \code{NULL} are reset to defaults when reloading the package (or calling \code{repr:::.onload()}).
}
\section{Options}{


\describe{

\item{\code{repr.plot.*}}{
	Those are for representations of \code{recordedplot} instances:
	\describe{
		\item{\code{repr.plot.width}}{Plotting area width in inches (default: 7)}
		\item{\code{repr.plot.height}}{Plotting area height in inches (default: 7)}
		\item{\code{repr.plot.pointsize}}{Text height in pt (default: 12)}
		\item{\code{repr.plot.bg}}{Background color (default: white)}
		\item{\code{repr.plot.antialias}}{Which kind of antialiasing to use for for lines and text? 'gray', 'subpixel' or 'none'? (default: gray)}
		\item{\code{repr.plot.res}}{PPI for rasterization (default: 120)}
		\item{\code{repr.plot.quality}}{Quality of JPEG format in \% (default: 90)}
		\item{\code{repr.plot.family}}{Vector font family. 'sans', 'serif', 'mono' or a specific one (default: sans)}
	}
}
\item{\code{repr.vector.quote}}{
	Output quotation marks for character vectors? (default: TRUE)
}
\item{\code{repr.matrix.max.rows}}{
	How many rows to display at max. Will insert a row with vertical ellipses to show elision. (default: 60)
}
\item{\code{repr.matrix.max.cols}}{
	How many cols to display at max. Will insert a column with horizontal ellipses to show elision. (default: 20)
}
\item{\code{repr.matrix.latex.colspec}}{
	How to layout LaTeX tables when representing matrices or data.frames.
	List of \code{row.head}, other \code{col}, and \code{end} strings.
	\code{end} mainly exists for when you want a vertical line there (default: 'r|', 'l', and '')
}
\item{\code{repr.function.highlight}}{
 Use the \code{highr} package to insert highlighting instructions into the code? Needs that package to be installed. (default: FALSE)
}
\item{\code{repr.html.deduplicate}}{
 Use the \link{html_dependencies} manager to only include dependencies once? This can greatly reduce notebook size, but fails if e.g. iframes are used (default: FALSE)
}

}
}

\keyword{datasets}