| repr-options {repr} | R Documentation |
These options are used to control the behavior of repr when not calling it directly. Use options(repr.* = ...) and getOption('repr.*') to set and get them, respectively.
repr_option_defaults
An object of class list of length 13.
Once this package is loaded, all options are set to defaults which weren’t set beforehand.
Setting all options set to NULL are reset to defaults when reloading the package (or calling repr:::.onload()).
repr.plot.*Those are for representations of recordedplot instances:
repr.plot.widthPlotting area width in inches (default: 7)
repr.plot.heightPlotting area height in inches (default: 7)
repr.plot.pointsizeText height in pt (default: 12)
repr.plot.bgBackground color (default: white)
repr.plot.antialiasWhich kind of antialiasing to use for for lines and text? 'gray', 'subpixel' or 'none'? (default: gray)
repr.plot.resPPI for rasterization (default: 120)
repr.plot.qualityQuality of JPEG format in % (default: 90)
repr.plot.familyVector font family. 'sans', 'serif', 'mono' or a specific one (default: sans)
repr.vector.quoteOutput quotation marks for character vectors? (default: TRUE)
repr.matrix.max.rowsHow many rows to display at max. Will insert a row with vertical ellipses to show elision. (default: 60)
repr.matrix.max.colsHow many cols to display at max. Will insert a column with horizontal ellipses to show elision. (default: 20)
repr.matrix.latex.colspecHow to layout LaTeX tables when representing matrices or data.frames.
List of row.head, other col, and end strings.
end mainly exists for when you want a vertical line there (default: 'r|', 'l', and ”)
repr.function.highlightUse the highr package to insert highlighting instructions into the code? Needs that package to be installed. (default: FALSE)