Title: | Display Idiomatic Code to Construct Most R Objects |
---|---|
Description: | Prints code that can be used to recreate R objects. In a sense it is similar to 'base::dput()' or 'base::deparse()' but 'constructive' strives to use idiomatic constructors. |
Authors: | Antoine Fabri [aut, cre], Kirill Müller [ctb] |
Maintainer: | Antoine Fabri <[email protected]> |
License: | MIT + file LICENSE |
Version: | 1.0.1.9000 |
Built: | 2024-11-21 06:32:06 UTC |
Source: | https://github.com/cynkra/constructive |
Exported for custom constructor design. If recurse
is TRUE
(default), we
recurse to construct args
and insert their construction code in a fun(...)
call returned
as a character vector. If args
already contains code rather than object to
construct one should set recurse
to FALSE
.
.cstr_apply( args, fun = "list", ..., trailing_comma = FALSE, recurse = TRUE, implicit_names = FALSE, new_line = TRUE, one_liner = FALSE, unicode_representation = c("ascii", "latin", "character", "unicode"), escape = FALSE )
.cstr_apply( args, fun = "list", ..., trailing_comma = FALSE, recurse = TRUE, implicit_names = FALSE, new_line = TRUE, one_liner = FALSE, unicode_representation = c("ascii", "latin", "character", "unicode"), escape = FALSE )
args |
A list of arguments to construct recursively, or code if |
fun |
The function name to use to build code of the form "fun(...)" |
... |
Options passed recursively to the further methods |
trailing_comma |
Boolean. Whether to leave a trailing comma after the last argument if
the code is multiline, some constructors allow it (e.g. |
recurse |
Boolean. Whether to recursively generate the code to construct |
implicit_names |
When data is provided, compress calls of the form |
new_line |
Boolean. Forwarded to |
one_liner |
Boolean. Whether to return a one line call. |
unicode_representation |
By default "ascii", which means only ASCII characters
(code point < 128) will be used to construct strings and variable names. This makes sure that
homoglyphs (different spaces and other identically displayed unicode characters)
are printed differently, and avoid possible unfortunate copy and paste
auto conversion issues. "latin" is more lax and uses all latin characters
(code point < 256). "character" shows all characters, but not emojis. Finally
"unicode" displays all characters and emojis, which is what |
escape |
Boolean. Whether to escape double quotes and backslashes. If |
A character vector of code
a <- 1 .cstr_apply(list(a=a), "foo") .cstr_apply(list(a=a), "foo", data = list(a=1)) .cstr_apply(list(a=a), "foo", data = list(a=1), implicit_names = TRUE) .cstr_apply(list(b=a), "foo", data = list(a=1), implicit_names = TRUE) .cstr_apply(list(a="c(1,2)"), "foo") .cstr_apply(list(a="c(1,2)"), "foo", recurse = FALSE)
a <- 1 .cstr_apply(list(a=a), "foo") .cstr_apply(list(a=a), "foo", data = list(a=1)) .cstr_apply(list(a=a), "foo", data = list(a=1), implicit_names = TRUE) .cstr_apply(list(b=a), "foo", data = list(a=1), implicit_names = TRUE) .cstr_apply(list(a="c(1,2)"), "foo") .cstr_apply(list(a="c(1,2)"), "foo", recurse = FALSE)
Exported for custom constructor design. This function allows combining independent checks so information is given about
all failing checks rather than the first one. All parameters except ...
are
forwarded to rlang::abort()
.cstr_combine_errors( ..., class = NULL, call, header = NULL, body = NULL, footer = NULL, trace = NULL, parent = NULL, use_cli_format = NULL, .internal = FALSE, .file = NULL, .frame = parent.frame(), .trace_bottom = NULL )
.cstr_combine_errors( ..., class = NULL, call, header = NULL, body = NULL, footer = NULL, trace = NULL, parent = NULL, use_cli_format = NULL, .internal = FALSE, .file = NULL, .frame = parent.frame(), .trace_bottom = NULL )
... |
check expressions |
class |
Subclass of the condition. |
call |
The execution environment of a currently running
function, e.g. You only need to supply Can also be For more information about error calls, see Including function calls in error messages. |
header |
An optional header to precede the errors |
body , footer
|
Additional bullets. |
trace |
A |
parent |
Supply
For more information about error calls, see Including contextual information with error chains. |
use_cli_format |
Whether to format If set to |
.internal |
If |
.file |
A connection or a string specifying where to print the
message. The default depends on the context, see the |
.frame |
The throwing context. Used as default for
|
.trace_bottom |
Used in the display of simplified backtraces
as the last relevant call frame to show. This way, the irrelevant
parts of backtraces corresponding to condition handling
( |
Returns NULL
invisibly, called for side effects.
Exported for custom constructor design. .cstr_construct()
is basically a
naked construct()
, without the checks, the style, the object post processing etc...
.cstr_construct(x, ..., data = NULL, classes = NULL)
.cstr_construct(x, ..., data = NULL, classes = NULL)
x |
An object, for |
... |
Constructive options built with the |
data |
Named list or environment of objects we want to detect and mention by name (as opposed to deparsing them further). Can also contain unnamed nested lists, environments, or package names, in the latter case package exports and datasets will be considered. In case of conflict, the last provided name is considered. |
classes |
A character vector of classes for which to use idiomatic
constructors when available, we can provide a package instead of all its
classes, in the "{pkg}" form, and we can use a minus sign (inside the quotes)
to exclude rather than include. By default we use idiomatic constructors
whenever possible. The special values |
A character vector
Exported for custom constructor design.
.cstr_options(class, ...)
.cstr_options(class, ...)
class |
A string. An S3 class. |
... |
Options to set |
An object of class c(paste0("constructive_options_", class), "constructive_options")
Exported for custom constructor design.
.cstr_pipe(x, y, ..., pipe = NULL, one_liner = FALSE, indent = TRUE)
.cstr_pipe(x, y, ..., pipe = NULL, one_liner = FALSE, indent = TRUE)
x |
A character vector. The code for the left hand side call. |
y |
A character vector. The code for the right hand side call. |
... |
Implemented to collect unused arguments forwarded by the dots of the caller environment. |
pipe |
A string. The pipe to use, |
one_liner |
A boolean. Whether to paste |
indent |
A boolean. Whether to indent |
A character vector
.cstr_pipe("iris", "head(2)", pipe = "magrittr", one_liner = FALSE) .cstr_pipe("iris", "head(2)", pipe = "magrittr", one_liner = TRUE)
.cstr_pipe("iris", "head(2)", pipe = "magrittr", one_liner = FALSE) .cstr_pipe("iris", "head(2)", pipe = "magrittr", one_liner = TRUE)
Exported for custom constructor design. In the general case an object might have more attributes than given by the idiomatic
construction. .cstr_repair_attributes()
sets some of those attributes and ignores
others.
.cstr_repair_attributes( x, code, ..., ignore = NULL, idiomatic_class = NULL, remove = NULL, flag_s4 = TRUE, repair_names = FALSE )
.cstr_repair_attributes( x, code, ..., ignore = NULL, idiomatic_class = NULL, remove = NULL, flag_s4 = TRUE, repair_names = FALSE )
x |
The object to construct |
code |
The code constructing the object before attribute repair |
... |
Forwarded to |
ignore |
The attributes that shouldn't be repaired, i.e. we expect them
to be set by the constructor already in |
idiomatic_class |
The class of the objects that the constructor produces,
if |
remove |
Attributes that should be removed, should rarely be useful. |
flag_s4 |
Boolean. Whether to use |
repair_names |
Boolean. Whether to repair the |
A character vector
Exported for custom constructor design. Generally called through .cstr_apply()
.
.cstr_wrap(args, fun, new_line = FALSE)
.cstr_wrap(args, fun, new_line = FALSE)
args |
A character vector containing the code of arguments. |
fun |
A string. The name of the function to use in the function call.
Use |
new_line |
Boolean. Whether to insert a new line between |
A character vector.
This is designed to be used in constructed output. The parents
and ...
arguments
are not processed and only used to display additional information. If used on
an improper memory address it will either fail (most likely) or the output
will be erratic.
.env(address, parents = NULL, ...)
.env(address, parents = NULL, ...)
address |
Memory address of the environment |
parents , ...
|
ignored |
The environment that the memory address points to.
Base R doesn't provide utilities to build or manipulate external pointers
(objects of type "externalptr"), so we provide our own.
Objects defined with .xptr()
are not stable across sessions,
.xptr(address)
.xptr(address)
address |
Memory address |
The external pointer (type "externalptr") that the memory address points to.
Builds options that will be passed to waldo::compare()
down the line.
compare_options( ignore_srcref = TRUE, ignore_attr = FALSE, ignore_function_env = FALSE, ignore_formula_env = FALSE )
compare_options( ignore_srcref = TRUE, ignore_attr = FALSE, ignore_function_env = FALSE, ignore_formula_env = FALSE )
ignore_srcref |
Ignore differences in function |
ignore_attr |
Ignore differences in specified attributes?
Supply a character vector to ignore differences in named attributes.
By default the For backward compatibility with |
ignore_function_env , ignore_formula_env
|
Ignore the environments of
functions and formulas, respectively? These are provided primarily for
backward compatibility with |
A list
construct()
builds the code to reproduce one object,
construct_multi()
builds the code to reproduce objects stored in a named
list or environment.
construct( x, ..., data = NULL, pipe = NULL, check = NULL, unicode_representation = c("ascii", "latin", "character", "unicode"), escape = FALSE, pedantic_encoding = FALSE, compare = compare_options(), one_liner = FALSE, template = getOption("constructive_opts_template"), classes = NULL ) construct_multi( x, ..., data = NULL, pipe = NULL, check = NULL, unicode_representation = c("ascii", "latin", "character", "unicode"), escape = FALSE, pedantic_encoding = FALSE, compare = compare_options(), one_liner = FALSE, template = getOption("constructive_opts_template"), classes = NULL, include_dotted = TRUE )
construct( x, ..., data = NULL, pipe = NULL, check = NULL, unicode_representation = c("ascii", "latin", "character", "unicode"), escape = FALSE, pedantic_encoding = FALSE, compare = compare_options(), one_liner = FALSE, template = getOption("constructive_opts_template"), classes = NULL ) construct_multi( x, ..., data = NULL, pipe = NULL, check = NULL, unicode_representation = c("ascii", "latin", "character", "unicode"), escape = FALSE, pedantic_encoding = FALSE, compare = compare_options(), one_liner = FALSE, template = getOption("constructive_opts_template"), classes = NULL, include_dotted = TRUE )
x |
An object, for |
... |
Constructive options built with the |
data |
Named list or environment of objects we want to detect and mention by name (as opposed to deparsing them further). Can also contain unnamed nested lists, environments, or package names, in the latter case package exports and datasets will be considered. In case of conflict, the last provided name is considered. |
pipe |
Which pipe to use, either |
check |
Boolean. Whether to check if the created code reproduces the object
using |
unicode_representation |
By default "ascii", which means only ASCII characters
(code point < 128) will be used to construct strings and variable names. This makes sure that
homoglyphs (different spaces and other identically displayed unicode characters)
are printed differently, and avoid possible unfortunate copy and paste
auto conversion issues. "latin" is more lax and uses all latin characters
(code point < 256). "character" shows all characters, but not emojis. Finally
"unicode" displays all characters and emojis, which is what |
escape |
Boolean. Whether to escape double quotes and backslashes. If |
pedantic_encoding |
Boolean. Whether to mark strings with the "unknown" encoding rather than an explicit native encoding ("UTF-8" or "latin1") when it's necessary to reproduce the binary representation exactly. This detail is normally of very little significance. The reason why we're not pedantic by default is that the constructed code might be different in the console and in snapshot tests and reprexes due to the latter rounding some angles, and it would be confusing for users. |
compare |
Parameters passed to |
one_liner |
Boolean. Whether to collapse the output to a single line of code. |
template |
A list of constructive options built with |
classes |
A character vector of classes for which to use idiomatic
constructors when available, we can provide a package instead of all its
classes, in the "{pkg}" form, and we can use a minus sign (inside the quotes)
to exclude rather than include. By default we use idiomatic constructors
whenever possible. The special values |
include_dotted |
Whether to include names starting with dots, this includes
|
construct_multi()
recognizes promises (also called lazy bindings),
this means that for instance construct_multi(environment())
can be called
when debugging a function and will construct unevaluated arguments using
delayedAssign()
.
An object of class 'constructive'.
Constructive options provide a way to customize the output of 'construct()'. We can provide calls to 'opts_*()' functions to the '...' argument. Each of these functions targets a specific type or class and is documented on its own page.
opts_array(constructor = c("array", "next"), ...)
opts_AsIs(constructor = c("I", "next"), ...)
opts_atomic(..., trim = NULL, fill = c("default", "rlang", "+", "...", "none"), compress = TRUE)
opts_bibentry(constructor = c("bibentry", "next"), ...)
opts_blob(constructor = c("blob", "next"), ...)
opts_character(constructor = c("default"), ..., trim = NULL, fill = c("default", "rlang", "+", "...", "none"), compress = TRUE, unicode_representation = c("ascii", "latin", "character", "unicode"), escape = FALSE)
opts_citationFooter(constructor = c("citFooter", "next"), ...)
opts_citationHeader(constructor = c("citHeader", "next"), ...)
opts_classGeneratorFunction(constructor = c("setClass"), ...)
opts_classPrototypeDef(constructor = c("prototype"), ...)
opts_classRepresentation(constructor = c("getClassDef"), ...)
opts_complex(constructor = c("default"), ..., trim = NULL, fill = c("default", "rlang", "+", "...", "none"), compress = TRUE)
opts_constructive_options(constructor = c("opts", "next"), ...)
opts_CoordCartesian(constructor = c("coord_cartesian", "next", "environment"), ...)
opts_CoordFixed(constructor = c("coord_fixed", "next", "environment"), ...)
opts_CoordFlip(constructor = c("coord_flip", "next", "environment"), ...)
opts_CoordMap(constructor = c("coord_map", "next", "environment"), ...)
opts_CoordMunch(constructor = c("coord_munch", "next", "environment"), ...)
opts_CoordPolar(constructor = c("coord_polar", "next", "environment"), ...)
opts_CoordQuickmap(constructor = c("coord_quickmap", "next", "environment"), ...)
opts_CoordSf(constructor = c("coord_sf", "next", "environment"), ...)
opts_CoordTrans(constructor = c("coord_trans", "next", "environment"), ...)
opts_data.frame(constructor = c("data.frame", "read.table", "next", "list"), ..., recycle = TRUE)
opts_data.table(constructor = c("data.table", "next", "list"), ..., selfref = FALSE, recycle = TRUE)
opts_Date(constructor = c("as.Date", "as_date", "date", "new_date", "as.Date.numeric", "as_date.numeric", "next", "double"), ..., origin = "1970-01-01")
opts_difftime(constructor = c("as.difftime", "next"), ...)
opts_dm(constructor = c("dm", "next", "list"), ...)
opts_dots(constructor = c("default"), ...)
opts_double(constructor = c("default"), ..., trim = NULL, fill = c("default", "rlang", "+", "...", "none"), compress = TRUE)
opts_element_blank(constructor = c("element_blank", "next", "list"), ...)
opts_element_grob(constructor = c("element_grob", "next", "list"), ...)
opts_element_line(constructor = c("element_line", "next", "list"), ...)
opts_element_rect(constructor = c("element_rect", "next", "list"), ...)
opts_element_render(constructor = c("element_render", "next", "list"), ...)
opts_element_text(constructor = c("element_text", "next", "list"), ...)
opts_environment(constructor = c(".env", "list2env", "as.environment", "new.env", "topenv", "new_environment", "predefine"), ..., recurse = FALSE)
opts_error(constructor = c("errorCondition", "next"), ...)
opts_expression(constructor = c("default"), ...)
opts_externalptr(constructor = c("default"), ...)
opts_FacetWrap(constructor = c("facet_wrap", "ggproto", "next", "environment"), ...)
opts_factor(constructor = c("factor", "as_factor", "new_factor", "next", "integer"), ...)
opts_formula(constructor = c("default", "formula", "as.formula", "new_formula", "next"), ..., environment = TRUE)
opts_function(constructor = c("function", "as.function", "new_function"), ..., environment = TRUE, srcref = FALSE, trim = NULL)
opts_ggplot(constructor = c("ggplot", "next", "list"), ...)
opts_ggproto(constructor = c("default", "next", "environment"), ...)
opts_grouped_df(constructor = c("default", "next", "list"), ...)
opts_hexmode(constructor = c("as.hexmode", "next"), ..., integer = FALSE)
opts_integer(constructor = c("default"), ..., trim = NULL, fill = c("default", "rlang", "+", "...", "none"), compress = TRUE)
opts_integer64(constructor = c("as.integer64", "next", "double"), ...)
opts_labels(constructor = c("labs", "next", "list"), ...)
opts_language(constructor = c("default"), ...)
opts_Layer(constructor = c("default", "layer", "next", "environment"), ...)
opts_list(constructor = c("list", "list2"), ..., trim = NULL, fill = c("vector", "new_list", "+", "...", "none"))
opts_logical(constructor = c("default"), ..., trim = NULL, fill = c("default", "rlang", "+", "...", "none"), compress = TRUE)
opts_margin(constructor = c("margin", "next", "double"), ...)
opts_matrix(constructor = c("matrix", "array", "next"), ...)
opts_mts(constructor = c("ts", "next", "atomic"), ...)
opts_noquote(constructor = c("noquote", "next"), ...)
opts_NULL(constructor = "NULL", ...)
opts_numeric_version(constructor = c("numeric_version", "next", "list"), ...)
opts_octmode(constructor = c("as.octmode", "next"), ..., integer = FALSE)
opts_ordered(constructor = c("ordered", "factor", "new_ordered", "next", "integer"), ...)
opts_package_version(constructor = c("package_version", "next", "list"), ...)
opts_pairlist(constructor = c("pairlist", "pairlist2"), ...)
opts_person(constructor = c("person", "next"), ...)
opts_POSIXct(constructor = c("as.POSIXct", ".POSIXct", "as_datetime", "as.POSIXct.numeric", "as_datetime.numeric", "next", "atomic"), ..., origin = "1970-01-01")
opts_POSIXlt(constructor = c("as.POSIXlt", "next", "list"), ...)
opts_quosure(constructor = c("new_quosure", "next", "language"), ...)
opts_quosures(constructor = c("new_quosures", "next", "list"), ...)
opts_R_system_version(constructor = c("R_system_version", "next", "list"), ...)
opts_R6(constructor = c("R6Class", "next"), ...)
opts_R6ClassGenerator(constructor = c("R6Class", "next"), ...)
opts_raw(constructor = c("as.raw", "charToRaw"), ..., trim = NULL, fill = c("default", "rlang", "+", "...", "none"), compress = TRUE, representation = c("hexadecimal", "decimal"))
opts_rel(constructor = c("rel", "next", "double"), ...)
opts_rowwise_df(constructor = c("default", "next", "list"), ...)
opts_S4(constructor = c("new"), ...)
opts_Scale(constructor = c("default", "next", "environment"), ...)
opts_ScalesList(constructor = c("ScalesList", "next", "list"), ...)
opts_simpleCondition(constructor = c("simpleCondition", "next"), ...)
opts_simpleError(constructor = c("simpleError", "next"), ...)
opts_simpleMessage(constructor = c("simpleMessage", "next"), ...)
opts_simpleUnit(constructor = c("unit", "next", "double"), ...)
opts_simpleWarning(constructor = c("simpleWarning", "next"), ...)
opts_tbl_df(constructor = c("tibble", "tribble", "next", "list"), ..., trailing_comma = TRUE, justify = c("left", "right", "centre", "none"), recycle = TRUE)
opts_theme(constructor = c("theme", "next", "list"), ...)
opts_ts(constructor = c("ts", "next", "atomic"), ...)
opts_uneval(constructor = c("aes", "next", "list"), ...)
opts_vctrs_list_of(constructor = c("list_of", "next", "list"), ...)
opts_waiver(constructor = c("waiver", "next", "list"), ...)
opts_warning(constructor = c("warningCondition", "next"), ...)
opts_weakref(constructor = c("new_weakref"), ...)
opts_xts(constructor = c("as.xts.matrix", "next"), ...)
opts_yearmon(constructor = c("as.yearmon", "yearmon", "next"), ...)
opts_yearqtr(constructor = c("as.yearqtr", "yearqtr", "next"), ...)
opts_zoo(constructor = c("zoo", "next"), ...)
opts_zooreg(constructor = c("zooreg", "next"), ...)
construct_dput()
construct_base()
construct_clip()
construct_dump()
construct_reprex()
construct_diff()
construct(head(cars)) construct(head(cars), opts_data.frame("read.table")) construct(head(cars), opts_data.frame("next")) construct(iris$Species) construct(iris$Species, opts_atomic(compress = FALSE), opts_factor("new_factor")) construct_multi(list(a = head(cars), b = iris$Species))
construct(head(cars)) construct(head(cars), opts_data.frame("read.table")) construct(head(cars), opts_data.frame("next")) construct(iris$Species) construct(iris$Species, opts_atomic(compress = FALSE), opts_factor("new_factor")) construct_multi(list(a = head(cars), b = iris$Species))
This is a simple wrapper for convenience, construct_clip(x, ...)
is equivalent to
print(construct(x, ...), print_mode = "clipboard")
(an idiom that you might
use to use the clipboard with other functions). For more flexible printing
options see ?constructive_print_mode
.
construct_clip( x, ..., data = NULL, pipe = NULL, check = NULL, unicode_representation = c("ascii", "latin", "character", "unicode"), escape = FALSE, pedantic_encoding = FALSE, compare = compare_options(), one_liner = FALSE, template = getOption("constructive_opts_template"), classes = NULL )
construct_clip( x, ..., data = NULL, pipe = NULL, check = NULL, unicode_representation = c("ascii", "latin", "character", "unicode"), escape = FALSE, pedantic_encoding = FALSE, compare = compare_options(), one_liner = FALSE, template = getOption("constructive_opts_template"), classes = NULL )
x |
An object, for |
... |
Constructive options built with the |
data |
Named list or environment of objects we want to detect and mention by name (as opposed to deparsing them further). Can also contain unnamed nested lists, environments, or package names, in the latter case package exports and datasets will be considered. In case of conflict, the last provided name is considered. |
pipe |
Which pipe to use, either |
check |
Boolean. Whether to check if the created code reproduces the object
using |
unicode_representation |
By default "ascii", which means only ASCII characters
(code point < 128) will be used to construct strings and variable names. This makes sure that
homoglyphs (different spaces and other identically displayed unicode characters)
are printed differently, and avoid possible unfortunate copy and paste
auto conversion issues. "latin" is more lax and uses all latin characters
(code point < 256). "character" shows all characters, but not emojis. Finally
"unicode" displays all characters and emojis, which is what |
escape |
Boolean. Whether to escape double quotes and backslashes. If |
pedantic_encoding |
Boolean. Whether to mark strings with the "unknown" encoding rather than an explicit native encoding ("UTF-8" or "latin1") when it's necessary to reproduce the binary representation exactly. This detail is normally of very little significance. The reason why we're not pedantic by default is that the constructed code might be different in the console and in snapshot tests and reprexes due to the latter rounding some angles, and it would be confusing for users. |
compare |
Parameters passed to |
one_liner |
Boolean. Whether to collapse the output to a single line of code. |
template |
A list of constructive options built with |
classes |
A character vector of classes for which to use idiomatic
constructors when available, we can provide a package instead of all its
classes, in the "{pkg}" form, and we can use a minus sign (inside the quotes)
to exclude rather than include. By default we use idiomatic constructors
whenever possible. The special values |
An object of class 'constructive', invisibly. Called for side effects.
## Not run: construct_clip(head(cars)) ## End(Not run)
## Not run: construct_clip(head(cars)) ## End(Not run)
This calls construct()
on two objects and compares the output using
diffobj::diffChr()
.
construct_diff( target, current, ..., data = NULL, pipe = NULL, check = TRUE, compare = compare_options(), one_liner = FALSE, template = getOption("constructive_opts_template"), classes = NULL, mode = c("sidebyside", "auto", "unified", "context"), interactive = TRUE )
construct_diff( target, current, ..., data = NULL, pipe = NULL, check = TRUE, compare = compare_options(), one_liner = FALSE, template = getOption("constructive_opts_template"), classes = NULL, mode = c("sidebyside", "auto", "unified", "context"), interactive = TRUE )
target |
the reference object |
current |
the object being compared to |
... |
Constructive options built with the |
data |
Named list or environment of objects we want to detect and mention by name (as opposed to deparsing them further). Can also contain unnamed nested lists, environments, or package names, in the latter case package exports and datasets will be considered. In case of conflict, the last provided name is considered. |
pipe |
Which pipe to use, either |
check |
Boolean. Whether to check if the created code reproduces the object
using |
compare |
Parameters passed to |
one_liner |
Boolean. Whether to collapse the output to a single line of code. |
template |
A list of constructive options built with |
classes |
A character vector of classes for which to use idiomatic
constructors when available, we can provide a package instead of all its
classes, in the "{pkg}" form, and we can use a minus sign (inside the quotes)
to exclude rather than include. By default we use idiomatic constructors
whenever possible. The special values |
mode , interactive
|
passed to |
Returns NULL
invisibly, called for side effects
## Not run: # some object print the same though they're different # `construct_diff()` shows how they differ : df1 <- data.frame(a=1, b = "x") df2 <- data.frame(a=1L, b = "x", stringsAsFactors = TRUE) attr(df2, "some_attribute") <- "a value" df1 df2 construct_diff(df1, df2) # Those are made easy to compare construct_diff(substr, substring) construct_diff(month.abb, month.name) # more examples borrowed from {waldo} package construct_diff(c("a", "b", "c"), c("a", "B", "c")) construct_diff(c("X", letters), c(letters, "X")) construct_diff(list(factor("x")), list(1L)) construct_diff(df1, df2) x <- list(a = list(b = list(c = list(structure(1, e = 1))))) y <- list(a = list(b = list(c = list(structure(1, e = "a"))))) construct_diff(x, y) ## End(Not run)
## Not run: # some object print the same though they're different # `construct_diff()` shows how they differ : df1 <- data.frame(a=1, b = "x") df2 <- data.frame(a=1L, b = "x", stringsAsFactors = TRUE) attr(df2, "some_attribute") <- "a value" df1 df2 construct_diff(df1, df2) # Those are made easy to compare construct_diff(substr, substring) construct_diff(month.abb, month.name) # more examples borrowed from {waldo} package construct_diff(c("a", "b", "c"), c("a", "B", "c")) construct_diff(c("X", letters), c(letters, "X")) construct_diff(list(factor("x")), list(1L)) construct_diff(df1, df2) x <- list(a = list(b = list(c = list(structure(1, e = 1))))) y <- list(a = list(b = list(c = list(structure(1, e = "a"))))) construct_diff(x, y) ## End(Not run)
construct_dput()
is a closer counterpart to base::dput()
that doesn't
use higher level constructors such as data.frame()
and factor()
.
construct_base()
uses higher constructors, but only for the classes
maintained in the default base R packages. This includes data.frame()
and factor()
, the S4 constructors from the 'method' package etc,
but not data.table()
and other constructors for classes from other
packages.
construct_dput( x, ..., data = NULL, pipe = NULL, check = NULL, unicode_representation = c("ascii", "latin", "character", "unicode"), escape = FALSE, pedantic_encoding = FALSE, compare = compare_options(), one_liner = FALSE, template = getOption("constructive_opts_template") ) construct_base( x, ..., data = NULL, pipe = NULL, check = NULL, unicode_representation = c("ascii", "latin", "character", "unicode"), escape = FALSE, pedantic_encoding = FALSE, compare = compare_options(), one_liner = FALSE, template = getOption("constructive_opts_template") )
construct_dput( x, ..., data = NULL, pipe = NULL, check = NULL, unicode_representation = c("ascii", "latin", "character", "unicode"), escape = FALSE, pedantic_encoding = FALSE, compare = compare_options(), one_liner = FALSE, template = getOption("constructive_opts_template") ) construct_base( x, ..., data = NULL, pipe = NULL, check = NULL, unicode_representation = c("ascii", "latin", "character", "unicode"), escape = FALSE, pedantic_encoding = FALSE, compare = compare_options(), one_liner = FALSE, template = getOption("constructive_opts_template") )
x |
An object, for |
... |
Constructive options built with the |
data |
Named list or environment of objects we want to detect and mention by name (as opposed to deparsing them further). Can also contain unnamed nested lists, environments, or package names, in the latter case package exports and datasets will be considered. In case of conflict, the last provided name is considered. |
pipe |
Which pipe to use, either |
check |
Boolean. Whether to check if the created code reproduces the object
using |
unicode_representation |
By default "ascii", which means only ASCII characters
(code point < 128) will be used to construct strings and variable names. This makes sure that
homoglyphs (different spaces and other identically displayed unicode characters)
are printed differently, and avoid possible unfortunate copy and paste
auto conversion issues. "latin" is more lax and uses all latin characters
(code point < 256). "character" shows all characters, but not emojis. Finally
"unicode" displays all characters and emojis, which is what |
escape |
Boolean. Whether to escape double quotes and backslashes. If |
pedantic_encoding |
Boolean. Whether to mark strings with the "unknown" encoding rather than an explicit native encoding ("UTF-8" or "latin1") when it's necessary to reproduce the binary representation exactly. This detail is normally of very little significance. The reason why we're not pedantic by default is that the constructed code might be different in the console and in snapshot tests and reprexes due to the latter rounding some angles, and it would be confusing for users. |
compare |
Parameters passed to |
one_liner |
Boolean. Whether to collapse the output to a single line of code. |
template |
A list of constructive options built with |
Both functions are valuable for object inspection, and might provide more
stable snapshots, since supporting more classes in the package means
the default output of construct()
might change over time for some objects.
To use higher level constructor from the base package itself, excluding
for instance stats::ts()
, utils::person()
or
methods::classGeneratorFunction()
), we can call construct(x, classes = "{base}"
An object of class 'constructive'.
construct_dput(head(iris, 2)) construct_base(head(iris, 2))
construct_dput(head(iris, 2)) construct_base(head(iris, 2))
An alternative to base::dump()
using code built with constructive.
construct_dump(x, path, append = FALSE, ...)
construct_dump(x, path, append = FALSE, ...)
x |
A named list or an environment. |
path |
File or connection to write to. |
append |
If FALSE, will overwrite existing file. If TRUE, will append to existing file. In both cases, if the file does not exist a new file is created. |
... |
Forwarded to |
Returns NULL
invisibly, called for side effects.
Usually called without arguments right after an imperfect code generation, but can also be called on the 'constructive' object itself.
construct_issues(x = NULL)
construct_issues(x = NULL)
x |
An object built by |
A character vector with class "waldo_compare"
construct_reprex()
constructs all objects of the local environment,
or a caller environment n
steps above. If n > 0
the function call
is also included in a comment.
construct_reprex(..., n = 0, include_dotted = TRUE)
construct_reprex(..., n = 0, include_dotted = TRUE)
... |
Forwarded to |
n |
The number of steps to go up on the call stack |
include_dotted |
Whether to include names starting with dots, this includes
|
construct_reprex()
doesn't call the {reprex} package. construct_reprex()
builds reproducible data while the reprex package build reproducible output
once you have the data.
construct_reprex()
wraps construct_multi()
and is thus able to construct
unevaluated arguments using delayedAssign()
. This means we can construct
reprexes for functions that use Non Standard Evaluation.
A useful trick is to use options(error = recover)
to be able to inspect
frames on error, and use construct_reprex()
from there to reproduce the
data state.
construct_reprex()
might fail to reproduce the output of functions that refer
to environments other than their caller environment. We believe these are
very rare and that the simplicity is worth the rounded corners, but if you
encounter these limitations please do open a ticket on our issue tracker
at https://github.com/cynkra/constructive/
and we might expand the feature.
An object of class 'constructive'.
Construct a function's signature such as the one you can see right below in the 'Usage' section.
construct_signature(x, name = NULL, one_liner = FALSE, style = TRUE)
construct_signature(x, name = NULL, one_liner = FALSE, style = TRUE)
x |
A function |
name |
The name of the function, by default we use the symbol provided to |
one_liner |
Boolean. Whether to collapse multi-line expressions on a single line using semicolons. |
style |
Boolean. Whether to give a class "constructive_code" on the output for pretty printing. |
a string or a character vector, with a class "constructive_code" for pretty
printing if style
is TRUE
construct_signature(lm)
construct_signature(lm)
Set these options to tweak {constructive}'s global behavior, to set them
permanently you can edit your .RProfile
(usethis::edit_r_profile()
might help).
Set options(constructive_print_mode = <character>)
to change the default
value of the print_mode
argument, of print.constructive
, where <character>
is a vector
of strings among the following :
"console"
: The default behavior, the code is printed in the console
"script"
: The code is copied to a new R script
"reprex"
: The code is shown in the viewer as a reprex,
the reprex (not only the code!) is also copied to the clipboard.
"clipboard"
: The constructed code is copied to the clipboard, if combined
with "reprex"
this takes precedence (the reprex is showed in the viewer,
the code without output is copied to the clipboard)
Set options(constructive_opts_template = <list>)
to set default constructive options,
see documentation of the template
arg in ?construct
Set options(constructive_pretty = FALSE)
to disable pretty printing using
{prettycode}
An alternative to base::deparse()
and rlang::expr_deparse()
that
handles additional corner cases and fails when encountering tokens other than
symbols and syntactic literals where cited alternatives would produce non syntactic code.
deparse_call( call, one_liner = FALSE, pipe = FALSE, style = TRUE, collapse = !style, unicode_representation = c("ascii", "latin", "character", "unicode"), escape = FALSE, pedantic_encoding = FALSE )
deparse_call( call, one_liner = FALSE, pipe = FALSE, style = TRUE, collapse = !style, unicode_representation = c("ascii", "latin", "character", "unicode"), escape = FALSE, pedantic_encoding = FALSE )
call |
A call. |
one_liner |
Boolean. Whether to collapse multi-line expressions on a single line using semicolons. |
pipe |
Boolean. Whether to use the base pipe to disentangle nested calls. This works best on simple calls. |
style |
Boolean. Whether to give a class "constructive_code" on the output for pretty printing. |
collapse |
Boolean. Whether to collapse the output to a single string,
won't be directly visible if |
unicode_representation |
By default "ascii", which means only ASCII characters
(code point < 128) will be used to construct strings and variable names. This makes sure that
homoglyphs (different spaces and other identically displayed unicode characters)
are printed differently, and avoid possible unfortunate copy and paste
auto conversion issues. "latin" is more lax and uses all latin characters
(code point < 256). "character" shows all characters, but not emojis. Finally
"unicode" displays all characters and emojis, which is what |
escape |
Boolean. Whether to escape double quotes and backslashes. If |
pedantic_encoding |
Boolean. Whether to mark strings with the "unknown" encoding rather than an explicit native encoding ("UTF-8" or "latin1") when it's necessary to reproduce the binary representation exactly. This detail is normally of very little significance. The reason why we're not pedantic by default is that the constructed code might be different in the console and in snapshot tests and reprexes due to the latter rounding some angles, and it would be confusing for users. |
a string or a character vector, with a class "constructive_code" for pretty
printing if style
is TRUE
.
expr <- quote(foo(bar({this; that}, 1))) deparse_call(expr) deparse_call(expr, one_liner = TRUE) deparse_call(expr, pipe = TRUE) deparse_call(expr, style = FALSE)
expr <- quote(foo(bar({this; that}, 1))) deparse_call(expr) deparse_call(expr, one_liner = TRUE) deparse_call(expr, pipe = TRUE) deparse_call(expr, style = FALSE)
We export a collection of functions that can be used to design custom methods for .cstr_construct() or custom constructors for a given method.
.cstr_new_class() : Open template to support a new class
.cstr_new_constructor() : Open template to implement a new constructor
.cstr_construct() : Low level generic for object construction code generation
.cstr_repair_attributes()' : Helper to repair attributes of objects
.cstr_options() : Define and check options to pass to custom constructors
.cstr_apply() : Build recursively the arguments passed to your constructor
.cstr_wrap() : Wrap argument code in function code (rarely needed)
.cstr_pipe() : Pipe a call to another (rarely needed)
.cstr_combine_errors() : helper function report several errors at once when relevant
These options will be used on arrays. Note that arrays can be built on top of
vectors, lists or expressions. Canonical arrays have an implicit class "array"
shown by class()
but "array" is not part of the class attribute.
opts_array(constructor = c("array", "next"), ...)
opts_array(constructor = c("array", "next"), ...)
constructor |
String. Name of the function used to construct the object, see Details section. |
... |
Additional options used by user defined constructors through the |
Depending on constructor
, we construct the object as follows:
"array"
(default): Use the array()
function
"next"
: Use the constructor for the next supported class. Call .class2()
on the object to see in which order the methods will be tried.
An object of class <constructive_options/constructive_options_array>
AsIs
These options will be used on objects of class AsIs
. AsIs
objects are
created with I()
which only prepends "AsIs"
to the class attribute.
opts_AsIs(constructor = c("I", "next"), ...)
opts_AsIs(constructor = c("I", "next"), ...)
constructor |
String. Name of the function used to construct the object, see Details section. |
... |
Additional options used by user defined constructors through the |
Depending on constructor
, we construct the object as follows:
"I"
(default): Use the I()
function
"next"
: Use the constructor for the next supported class. Call .class2()
on the object to see in which order the methods will be tried.
An object of class <constructive_options/constructive_options_AsIs>
These options will be used on atomic types ("logical", "integer", "numeric", "complex", "character" and "raw").
They can also be directly provided to atomic types through their own opts_*()
function, and in this case the latter will have precedence.
opts_atomic( ..., trim = NULL, fill = c("default", "rlang", "+", "...", "none"), compress = TRUE )
opts_atomic( ..., trim = NULL, fill = c("default", "rlang", "+", "...", "none"), compress = TRUE )
... |
Additional options used by user defined constructors through the |
trim |
|
fill |
String. Method to use to represent the trimmed elements. |
compress |
Boolean. If |
If trim
is provided, depending on fill
we will present trimmed elements as followed:
"default"
: Use default atomic constructors, so for instance c("a", "b", "c")
might become c("a", character(2))
.
"rlang"
: Use rlang atomic constructors, so for instance c("a", "b", "c")
might become c("a", rlang::new_character(2))
,
these rlang
constructors create vectors of NAs
, so it's different from the default option.
"+"
: Use unary +
, so for instance c("a", "b", "c")
might become c("a", +2)
.
"..."
: Use ...
, so for instance c("a", "b", "c")
might become c("a", ...)
"none"
: Don't represent trimmed elements.
Depending on the case some or all of the choices above might generate code that cannot be executed. The 2 former options above are the most likely to succeed and produce an output of the same type and dimensions recursively. This would at least be the case for data frame.
An object of class <constructive_options/constructive_options_atomic>
construct(iris, opts_atomic(trim = 2), check = FALSE) # fill = "default" construct(iris, opts_atomic(trim = 2, fill = "rlang"), check = FALSE) construct(iris, opts_atomic(trim = 2, fill = "+"), check = FALSE) construct(iris, opts_atomic(trim = 2, fill = "..."), check = FALSE) construct(iris, opts_atomic(trim = 2, fill = "none"), check = FALSE) construct(iris, opts_atomic(trim = 2, fill = "none"), check = FALSE) x <- c("a a", "a\U000000A0a", "a\U00002002a", "\U430 \U430") construct(x, opts_atomic(unicode_representation = "unicode")) construct(x, opts_atomic(unicode_representation = "character")) construct(x, opts_atomic(unicode_representation = "latin")) construct(x, opts_atomic(unicode_representation = "ascii"))
construct(iris, opts_atomic(trim = 2), check = FALSE) # fill = "default" construct(iris, opts_atomic(trim = 2, fill = "rlang"), check = FALSE) construct(iris, opts_atomic(trim = 2, fill = "+"), check = FALSE) construct(iris, opts_atomic(trim = 2, fill = "..."), check = FALSE) construct(iris, opts_atomic(trim = 2, fill = "none"), check = FALSE) construct(iris, opts_atomic(trim = 2, fill = "none"), check = FALSE) x <- c("a a", "a\U000000A0a", "a\U00002002a", "\U430 \U430") construct(x, opts_atomic(unicode_representation = "unicode")) construct(x, opts_atomic(unicode_representation = "character")) construct(x, opts_atomic(unicode_representation = "latin")) construct(x, opts_atomic(unicode_representation = "ascii"))
These options will be used on objects of class 'blob'.
opts_blob(constructor = c("blob", "next"), ...)
opts_blob(constructor = c("blob", "next"), ...)
constructor |
String. Name of the function used to construct the object. |
... |
Additional options used by user defined constructors through the |
Depending on constructor
, we construct the object as follows:
"blob"
(default): Use blob::blob()
on a raw object.
"new_blob"
(default): Use blob::new_blob()
on a list of raw objects.
"as.blob"
: Use blob::as_blob()
on a character vector
Use opts_raw()
and opts_character()
to tweak the construction of raw or
character objects constructed as part of the blob construction.
An object of class <constructive_options/constructive_options_blob>
These options will be used on objects of type 'character'. This type has a single native constructor, but some additional options can be set.
unicode_representation
and escape
are usually better set in the main
function (construct()
or other) so they apply not only on strings but on
symbols and argument names as well.
To set options on all atomic types at once see opts_atomic().
opts_character( constructor = c("default"), ..., trim = NULL, fill = c("default", "rlang", "+", "...", "none"), compress = TRUE, unicode_representation = c("ascii", "latin", "character", "unicode"), escape = FALSE )
opts_character( constructor = c("default"), ..., trim = NULL, fill = c("default", "rlang", "+", "...", "none"), compress = TRUE, unicode_representation = c("ascii", "latin", "character", "unicode"), escape = FALSE )
constructor |
String. Method used to construct the object, often the name of a function. |
... |
Constructive options built with the |
trim |
|
fill |
String. Method to use to represent the trimmed elements. See |
compress |
Boolean. If |
unicode_representation |
By default "ascii", which means only ASCII characters
(code point < 128) will be used to construct strings and variable names. This makes sure that
homoglyphs (different spaces and other identically displayed unicode characters)
are printed differently, and avoid possible unfortunate copy and paste
auto conversion issues. "latin" is more lax and uses all latin characters
(code point < 256). "character" shows all characters, but not emojis. Finally
"unicode" displays all characters and emojis, which is what |
escape |
Boolean. Whether to escape double quotes and backslashes. If |
An object of class <constructive_options/constructive_options_character>
These options will be used on objects of class 'classGeneratorFunction'.
opts_classGeneratorFunction(constructor = c("setClass"), ...)
opts_classGeneratorFunction(constructor = c("setClass"), ...)
constructor |
String. Name of the function used to construct the object. |
... |
Additional options used by user defined constructors through the |
An object of class <constructive_options/constructive_options_classGeneratorFunction>
These options will be used on objects of class 'classPrototypeDef'.
opts_classPrototypeDef(constructor = c("prototype"), ...)
opts_classPrototypeDef(constructor = c("prototype"), ...)
constructor |
String. Name of the function used to construct the object, see Details section. |
... |
Additional options used by user defined constructors through the |
An object of class <constructive_options/constructive_options_classPrototypeDef>
These options will be used on objects of class 'classRepresentation'.
opts_classRepresentation(constructor = c("getClassDef"), ...)
opts_classRepresentation(constructor = c("getClassDef"), ...)
constructor |
String. Name of the function used to construct the object. |
... |
Additional options used by user defined constructors through the |
An object of class <constructive_options/constructive_options_classRepresentation>
These options will be used on objects of type 'complex'. This type has a single native constructor, but some additional options can be set.
To set options on all atomic types at once see opts_atomic().
opts_complex( constructor = c("default"), ..., trim = NULL, fill = c("default", "rlang", "+", "...", "none"), compress = TRUE )
opts_complex( constructor = c("default"), ..., trim = NULL, fill = c("default", "rlang", "+", "...", "none"), compress = TRUE )
constructor |
String. Method used to construct the object, often the name of a function. |
... |
Additional options used by user defined constructors through the |
trim |
|
fill |
String. Method to use to represent the trimmed elements. See |
compress |
Boolean. If |
An object of class <constructive_options/constructive_options_complex>
constructive_options
These options will be used on objects of class constructive_options
.
opts_constructive_options(constructor = c("opts", "next"), ...)
opts_constructive_options(constructor = c("opts", "next"), ...)
constructor |
String. Name of the function used to construct the object, see Details section. |
... |
Additional options used by user defined constructors through the |
Depending on constructor
, we construct the object as follows:
"opts"
: Use the relevant constructive::opts_?()
function.
"next"
: Use the constructor for the next supported class. Call .class2()
on the object to see in which order the methods will be tried.
An object of class <constructive_options/constructive_options_constructive_options>
These options will be used on objects of class 'data.frame'.
opts_data.frame( constructor = c("data.frame", "read.table", "next", "list"), ..., recycle = TRUE )
opts_data.frame( constructor = c("data.frame", "read.table", "next", "list"), ..., recycle = TRUE )
constructor |
String. Name of the function used to construct the object, see Details section. |
... |
Additional options used by user defined constructors through the |
recycle |
Boolean. For the |
Depending on constructor
, we construct the object as follows:
"data.frame"
(default): Wrap the column definitions in a data.frame()
call. If some
columns are lists or data frames, we wrap the column definitions in tibble::tibble()
.
then use as.data.frame()
.
"read.table"
: We build the object using read.table()
if possible, or fall
back to data.frame()
.
"next"
: Use the constructor for the next supported class. Call .class2()
on the object to see in which order the methods will be tried.
"list"
: Use list()
and treat the class as a regular attribute.
An object of class <constructive_options/constructive_options_data.frame>
These options will be used on objects of class 'data.table'.
opts_data.table( constructor = c("data.table", "next", "list"), ..., selfref = FALSE, recycle = TRUE )
opts_data.table( constructor = c("data.table", "next", "list"), ..., selfref = FALSE, recycle = TRUE )
constructor |
String. Name of the function used to construct the object, see Details section. |
... |
Additional options used by user defined constructors through the |
selfref |
Boolean. Whether to include the |
recycle |
Boolean. Whether to recycle scalars to compress the output. |
Depending on constructor
, we construct the object as follows:
"data.table"
(default): Wrap the column definitions in a data.table()
call.
"next"
: Use the constructor for the next supported class. Call .class2()
on the object to see in which order the methods will be tried.
"list"
: Use list()
and treat the class as a regular attribute.
An object of class <constructive_options/constructive_options_data.table>
These options will be used on objects of class 'date'.
opts_Date( constructor = c("as.Date", "as_date", "date", "new_date", "as.Date.numeric", "as_date.numeric", "next", "double"), ..., origin = "1970-01-01" )
opts_Date( constructor = c("as.Date", "as_date", "date", "new_date", "as.Date.numeric", "as_date.numeric", "next", "double"), ..., origin = "1970-01-01" )
constructor |
String. Name of the function used to construct the object. |
... |
Additional options used by user defined constructors through the |
origin |
Origin to be used, ignored when irrelevant. |
Depending on constructor
, we construct the object as follows:
"as.Date"
(default): We wrap a character vector with as.Date()
, if the date
is infinite it cannot be converted to character and we wrap a numeric vector and
provide an origin
argument.
"as_date"
: Similar as above but using lubridate::as_date()
, the only difference is
that we never need to supply origin
.
"date"
: Similar as above but using lubridate::date()
, it doesn't support
infinite dates so we fall back on lubridate::as_date()
when we encounter them.
"new_date"
: We wrap a numeric vector with vctrs::new_date()
"as.Date.numeric"
: We wrap a numeric vector with as.Date()
and use the
provided origin
"as_date.numeric"
: Same as above but using lubridate::as_date()
and use the
provided origin
"next"
: Use the constructor for the next supported class. Call .class2()
on the object to see in which order the methods will be tried.
"double"
: We define as an double vector and repair attributes
If the data is not appropriate for a constructor we fall back to another one appropriately.
An object of class <constructive_options/constructive_options_Date>
These options will be used on objects of class 'dm'.
opts_dm(constructor = c("dm", "next", "list"), ...)
opts_dm(constructor = c("dm", "next", "list"), ...)
constructor |
String. Name of the function used to construct the object. |
... |
Additional options used by user defined constructors through the |
Depending on constructor
, we construct the object as follows:
"dm"
(default): We use dm::dm()
and other functions from dm to adjust the content.
"next"
: Use the constructor for the next supported class. Call .class2()
on the object to see in which order the methods will be tried.
"list"
: Use list()
and treat the class as a regular attribute.
An object of class <constructive_options/constructive_options_dm>
These options will be used on objects of type '...'. These are rarely encountered in practice. By default this function is useless as nothing can be set, this is provided in case users want to extend the method with other constructors.
opts_dots(constructor = c("default"), ...)
opts_dots(constructor = c("default"), ...)
constructor |
String. Name of the function used to construct the object. |
... |
Additional options used by user defined constructors through the |
Depending on constructor
, we construct the object as follows:
"default"
: We use the construct (function(...) get(\"...\"))(a = x, y)
which we evaluate in the correct environment.
An object of class <constructive_options/constructive_options_dots>
These options will be used on objects of type 'double'. This type has a single native constructor, but some additional options can be set.
To set options on all atomic types at once see opts_atomic().
opts_double( constructor = c("default"), ..., trim = NULL, fill = c("default", "rlang", "+", "...", "none"), compress = TRUE )
opts_double( constructor = c("default"), ..., trim = NULL, fill = c("default", "rlang", "+", "...", "none"), compress = TRUE )
constructor |
String. Method used to construct the object, often the name of a function. |
... |
Additional options used by user defined constructors through the |
trim |
|
fill |
String. Method to use to represent the trimmed elements. See |
compress |
Boolean. If |
An object of class <constructive_options/constructive_options_double>
Environments use reference semantics, they cannot be copied.
An attempt to copy an environment would indeed yield a different environment and identical(env, copy)
would be FALSE
.
Moreover most environments have a parent (exceptions are emptyenv()
and some
rare cases where the parent is NULL
) and thus to copy the environment we'd
have to have a way to point to the parent, or copy it too.
For this reason environments are constructive's cryptonite. They make some objects
impossible to reproduce exactly. And since every function or formula has one they're hard to
avoid.
opts_environment( constructor = c(".env", "list2env", "as.environment", "new.env", "topenv", "new_environment", "predefine"), ..., recurse = FALSE )
opts_environment( constructor = c(".env", "list2env", "as.environment", "new.env", "topenv", "new_environment", "predefine"), ..., recurse = FALSE )
constructor |
String. Name of the function used to construct the environment, see Constructors section. |
... |
Additional options used by user defined constructors through the |
recurse |
Boolean. Only considered if |
In some case we can build code that points to a specific environment, namely:
.GlobalEnv
, .BaseNamespaceEnv
, baseenv()
and emptyenv()
are used to construct
the global environment, the base namespace, the base package environment and the empty
environment
Namespaces are constructed using asNamespace("pkg")
Package environments are constructed using as.environment("package:pkg")
"imports" environments are constructed with parent.env(asNamespace("pkg"))
"lazydata" environments are constructed with getNamespaceInfo("pkg", "lazydata")
By default For other environments we use constructive's function constructive::.env()
, it fetches
the environment from its memory address and provides as additional information
the sequence of parents until we reach a special environment (those enumerated above).
The advantage of this approach is that it's readable and that the object is accurately reproduced.
The inconvenient is that it's not stable between sessions. If an environment has a NULL
parent it's always constructed
with constructive::.env()
, whatever the choice of the constructor.
Often however we wish to be able to reproduce from scratch a similar environment, so that we might run the constructed code later in a new session. We offer different different options to do this, with different trade-offs regarding accuracy and verbosity.
{constructive} will not signal any difference if it can reproduce an equivalent environment,
defined as containing the same values and having a same or equivalent parent.
See also the ignore_function_env
argument in ?compare_options
, which disables the check
of environments of function.
An object of class <constructive_options/constructive_options_environment>
We might set the constructor
argument to:
".env"
(default): use constructive::.env()
to construct the environment from
its memory address.
"list2env"
: We construct the environment as a list then
use base::list2env()
to convert it to an environment and assign it a parent. By
default we will use base::topenv()
to construct a parent. If recurse
is TRUE
the parent will be built recursively so all ancestors will be created until
we meet a known environment, this might be verbose and will fail if environments
are nested too deep or have a circular relationship. If the environment is empty we use new.env(parent=)
for a more economic syntax.
"new_environment"
: Similar to the above, but using rlang::new_environment()
.
"new.env"
: All environments will be recreated with the code "base::new.env()"
,
without argument, effectively creating an empty environment child of
the local (often global) environment. This is enough in cases where the environment
doesn't matter (or matters as long as it inherits from the local environment),
as is often the case with formulas. recurse
is ignored.
"as.environment"
: we attempt to construct the environment as a list and use
base::as.environment()
on top of it, as in as.environment(list(a=1, b=2))
, it will
contain the same variables as the original environment but the parent will be the
emptyenv()
. recurse
is ignored.
"topenv"
: we construct base::topenv(x)
, see ?topenv
. recurse
is ignored.
This is the most accurate we can be when constructing only special environments.
"predefine"
: Building environments from scratch using the above methods
can be verbose, sometimes redundant and sometimes even impossible due to
circularity (e.g. an environment referencing itself). With "predefine"
we define the environments and their content above the object returning
call, using placeholder names ..env.1..
, ..env.2..
etc.
The caveat is that the created code won't be a single call
and will create objects in the workspace. recurse
is ignored.
These options will be used on objects of type 'externalptr'. By default this function is useless as nothing can be set, this is provided in case users wan to extend the method with other constructors.
opts_externalptr(constructor = c("default"), ...)
opts_externalptr(constructor = c("default"), ...)
constructor |
String. Name of the function used to construct the object. |
... |
Additional options used by user defined constructors through the |
Depending on constructor
, we construct the object as follows:
"default"
: We use a special function from the constructive
An object of class <constructive_options/constructive_options_externalptr>
These options will be used on objects of class 'factor'.
opts_factor( constructor = c("factor", "as_factor", "new_factor", "next", "integer"), ... )
opts_factor( constructor = c("factor", "as_factor", "new_factor", "next", "integer"), ... )
constructor |
String. Name of the function used to construct the object, see Details section. |
... |
Additional options used by user defined constructors through the |
Depending on constructor
, we construct the object as follows:
"factor"
(default): Build the object using factor()
, levels won't
be defined explicitly if they are in alphabetical order (locale dependent!)
"as_factor"
: Build the object using forcats::as_factor()
whenever
possible, i.e. when levels are defined in order of appearance in the vector. Otherwise falls back to "factor"
constructor.
"new_factor"
: Build the object using vctrs::new_factor()
. Levels are
always defined explicitly.
"next"
: Use the constructor for the next supported class. Call .class2()
on the object to see in which order the methods will be tried.
"integer"
: We define as an integer vector and repair attributes.
An object of class <constructive_options/constructive_options_factor>
These options will be used on formulas, defined as calls to ~
, regardless
of their "class"
attribute.
opts_formula( constructor = c("default", "formula", "as.formula", "new_formula", "next"), ..., environment = TRUE )
opts_formula( constructor = c("default", "formula", "as.formula", "new_formula", "next"), ..., environment = TRUE )
constructor |
String. Name of the function used to construct the object, see Details section. |
... |
Additional options used by user defined constructors through the |
environment |
Boolean. Whether to attempt to construct the environment, if it makes a difference to construct it. Depending on
|
An object of class <constructive_options/constructive_options_formula>
These options will be used on functions, i.e. objects of type "closure", "special" and "builtin".
opts_function( constructor = c("function", "as.function", "new_function"), ..., environment = TRUE, srcref = FALSE, trim = NULL )
opts_function( constructor = c("function", "as.function", "new_function"), ..., environment = TRUE, srcref = FALSE, trim = NULL )
constructor |
String. Name of the function used to construct the object, see Details section. |
... |
Additional options used by user defined constructors through the |
environment |
Boolean. Whether to reconstruct the function's environment. |
srcref |
Boolean. Whether to attempt to reconstruct the function's srcref. |
trim |
|
Depending on constructor
, we construct the object as follows:
"function"
(default): Build the object using a standard function() {}
definition. This won't set the environment by default, unless environment
is set to TRUE
. If a srcref is available, if this srcref matches the function's
definition, and if trim
is left NULL
, the code is returned from using the srcref,
so comments will be shown in the output of construct()
. In the rare case
where the ast body of the function contains non syntactic nodes this constructor
cannot be used and falls back to the "as.function"
constructor.
"as.function"
: Build the object using a as.function()
call.
back to data.frame()
.
"new_function"
: Build the object using a rlang::new_function()
call.
An object of class <constructive_options/constructive_options_function>
These options will be used on objects of class 'ggplot'.
opts_ggplot(constructor = c("ggplot", "next", "list"), ...)
opts_ggplot(constructor = c("ggplot", "next", "list"), ...)
constructor |
String. Name of the function used to construct the object, see Details section. |
... |
Additional options used by user defined constructors through the |
Depending on constructor
, we construct the object as follows:
"ggplot"
(default): Use ggplot2::ggplot()
"next"
: Use the constructor for the next supported class. Call .class2()
on the object to see in which order the methods will be tried.
"list"
: Use list()
and treat the class as a regular attribute.
An object of class <constructive_options/constructive_options_ggplot>
These options will be used on objects of class 'grouped_df'.
opts_grouped_df(constructor = c("default", "next", "list"), ...)
opts_grouped_df(constructor = c("default", "next", "list"), ...)
constructor |
String. Name of the function used to construct the object, see Details section. |
... |
Additional options used by user defined constructors through the |
Depending on constructor
, we construct the object as follows:
"next"
: Use the constructor for the next supported class. Call .class2()
on the object to see in which order the methods will be tried.
"list"
: We define as an list object and repair attributes.
An object of class <constructive_options/constructive_options_factor>
These options will be used on objects of class 'hexmode'.
opts_hexmode(constructor = c("as.hexmode", "next"), ..., integer = FALSE)
opts_hexmode(constructor = c("as.hexmode", "next"), ..., integer = FALSE)
constructor |
String. Name of the function used to construct the object. |
... |
Additional options used by user defined constructors through the |
integer |
Whether to use |
Depending on constructor
, we construct the object as follows:
"as.hexmode"
(default): We build the object using as.hexmode()
"next"
: Use the constructor for the next supported class.
An object of class <constructive_options/constructive_options_hexmode>
These options will be used on objects of type 'integer'. This type has a single native constructor, but some additional options can be set.
To set options on all atomic types at once see opts_atomic().
opts_integer( constructor = c("default"), ..., trim = NULL, fill = c("default", "rlang", "+", "...", "none"), compress = TRUE )
opts_integer( constructor = c("default"), ..., trim = NULL, fill = c("default", "rlang", "+", "...", "none"), compress = TRUE )
constructor |
String. Method used to construct the object, often the name of a function. |
... |
Additional options used by user defined constructors through the |
trim |
|
fill |
String. Method to use to represent the trimmed elements. See |
compress |
Boolean. If |
An object of class <constructive_options/constructive_options_integer>
These options will be used on objects of class 'integer64'.
opts_integer64(constructor = c("as.integer64", "next", "double"), ...)
opts_integer64(constructor = c("as.integer64", "next", "double"), ...)
constructor |
String. Name of the function used to construct the object, see Details section. |
... |
Additional options used by user defined constructors through the |
Depending on constructor
, we construct the object as follows:
"as.integer64"
(default): Build the object using as.integer64()
on a
character vector.
"next"
: Use the constructor for the next supported class. Call .class2()
on the object to see in which order the methods will be tried.
"double"
: We define as an atomic vector and repair attributes.
We don't recommend the "next" and "double" constructors for this class as
they give incorrect results on negative or NA
"integer64" objects
due to some quirks in the implementation of the 'bit64' package.
An object of class <constructive_options/constructive_options_integer64>
These options will be used on objects of type 'language'. By default this function is useless as nothing can be set, this is provided in case users want to extend the method with other constructors.
opts_language(constructor = c("default"), ...)
opts_language(constructor = c("default"), ...)
constructor |
String. Name of the function used to construct the object. |
... |
Additional options used by user defined constructors through the |
Depending on constructor
, we construct the object as follows:
"default"
: We use constructive's deparsing algorithm on attributeless calls,
and use as.call()
on other language elements when attributes need to be constructed.
An object of class <constructive_options/constructive_options_language>
These options will be used on objects of class 'Layer'.
opts_Layer(constructor = c("default", "layer", "next", "environment"), ...)
opts_Layer(constructor = c("default", "layer", "next", "environment"), ...)
constructor |
String. Name of the function used to construct the object, see Details section. |
... |
Additional options used by user defined constructors through the |
Depending on constructor
, we construct the object as follows:
"default"
: We attempt to use the function originally used to create the
plot.
"layer"
: We use the ggplot2::layer()
function
"environment"
: Reconstruct the object using the general environment method
(which can be itself tweaked using opts_environment()
)
The latter constructor is the only one that reproduces the object exactly
since Layers are environments and environments can't be exactly copied (see ?opts_environment
)
An object of class <constructive_options/constructive_options_Layer>
These options will be used on objects of type 'list'.
opts_list( constructor = c("list", "list2"), ..., trim = NULL, fill = c("vector", "new_list", "+", "...", "none") )
opts_list( constructor = c("list", "list2"), ..., trim = NULL, fill = c("vector", "new_list", "+", "...", "none") )
constructor |
String. Name of the function used to construct the object, see Details section. |
... |
Additional options used by user defined constructors through the |
trim |
|
fill |
String. Method to use to represent the trimmed elements. |
Depending on constructor
, we construct the object as follows:
"list"
(default): Build the object by calling list()
.
"list2"
: Build the object by calling rlang::list2()
, the only difference with
the above is that we keep a trailing comma when the list is not trimmed and the call
spans several lines.
If trim
is provided, depending on fill
we will present trimmed elements as followed:
"vector"
(default): Use vector()
, so for instance list("a", "b", "c")
might become c(list("a"), vector("list", 2))
.
"new_list"
: Use rlang::new_list()
, so for instance list("a", "b", "c")
might become c(list("a"), rlang::new_list(2))
.
"+"
: Use unary +
, so for instance list("a", "b", "c")
might become list("a", +2)
.
"..."
: Use ...
, so for instance list("a", "b", "c")
might become list("a", ...)
"none"
: Don't represent trimmed elements.
When trim
is used the output is parsable but might not be possible to evaluate,
especially with fill = "..."
. In that case you might want to set check = FALSE
An object of class <constructive_options/constructive_options_list>
These options will be used on objects of type 'logical'. This type has a single native constructor, but some additional options can be set.
To set options on all atomic types at once see opts_atomic().
opts_logical( constructor = c("default"), ..., trim = NULL, fill = c("default", "rlang", "+", "...", "none"), compress = TRUE )
opts_logical( constructor = c("default"), ..., trim = NULL, fill = c("default", "rlang", "+", "...", "none"), compress = TRUE )
constructor |
String. Method used to construct the object, often the name of a function. |
... |
Additional options used by user defined constructors through the |
trim |
|
fill |
String. Method to use to represent the trimmed elements. See |
compress |
Boolean. If |
An object of class <constructive_options/constructive_options_logical>
Matrices are atomic vectors, lists, or objects of type "expression"
with a "dim"
attributes of length 2.
opts_matrix(constructor = c("matrix", "array", "next"), ...)
opts_matrix(constructor = c("matrix", "array", "next"), ...)
constructor |
String. Name of the function used to construct the object. |
... |
Additional options used by user defined constructors through the |
Depending on constructor
, we construct the object as follows:
"matrix"
: We use matrix()
"array"
: We use array()
"cbind"
,"rbind"
: We use cbind()
or "rbind()"
, this makes named
columns and rows easier to read.
"next"
: Use the constructor for the next supported class. Call .class2()
on the object to see in which order the methods will be tried. This will usually
be equivalent to "array"
"atomic"
: We define as an atomic vector and repair attributes
An object of class <constructive_options/constructive_options_matrix>
Depending on constructor
, we construct the object as follows:
"ts"
: We use ts()
"next"
: Use the constructor for the next supported class. Call .class2()
on the object to see in which order the methods will be tried. This will usually
be equivalent to "atomic"
"atomic"
: We define as an atomic vector and repair attributes
opts_mts(constructor = c("ts", "next", "atomic"), ...)
opts_mts(constructor = c("ts", "next", "atomic"), ...)
constructor |
String. Name of the function used to construct the object. |
... |
Additional options used by user defined constructors through the |
An object of class <constructive_options/constructive_options_mts>
Depending on constructor
, we construct the object as follows:
"numeric_version"
: We use numeric_version()
"next"
: Use the constructor for the next supported class. Call .class2()
on the object to see in which order the methods will be tried. This will usually
be equivalent to "list"
"list"
: We define as a list and repair attributes
opts_numeric_version(constructor = c("numeric_version", "next", "list"), ...)
opts_numeric_version(constructor = c("numeric_version", "next", "list"), ...)
constructor |
String. Name of the function used to construct the object. |
... |
Additional options used by user defined constructors through the |
An object of class <constructive_options/constructive_options_numeric_version>
These options will be used on objects of class 'octmode'.
opts_octmode(constructor = c("as.octmode", "next"), ..., integer = FALSE)
opts_octmode(constructor = c("as.octmode", "next"), ..., integer = FALSE)
constructor |
String. Name of the function used to construct the object. |
... |
Additional options used by user defined constructors through the |
integer |
Whether to use |
Depending on constructor
, we construct the object as follows:
"as.octmode"
(default): We build the object using as.octmode()
"next"
: Use the constructor for the next supported class.
An object of class <constructive_options/constructive_options_octmode>
These options will be used on objects of class 'ordered'.
opts_ordered( constructor = c("ordered", "factor", "new_ordered", "next", "integer"), ... )
opts_ordered( constructor = c("ordered", "factor", "new_ordered", "next", "integer"), ... )
constructor |
String. Name of the function used to construct the object, see Details section. |
... |
Additional options used by user defined constructors through the |
Depending on constructor
, we construct the object as follows:
"ordered"
(default): Build the object using ordered()
, levels won't
be defined explicitly if they are in alphabetical order (locale dependent!)
"factor"
: Same as above but build the object using factor()
and ordered = TRUE
.
"new_ordered"
: Build the object using vctrs::new_ordered()
. Levels are
always defined explicitly.
"next"
: Use the constructor for the next supported class. Call .class2()
on the object to see in which order the methods will be tried.
"integer"
: We define as an integer vector and repair attributes
An object of class <constructive_options/constructive_options_ordered>
Depending on constructor
, we construct the object as follows:
"package_version"
: We use package_version()
"next"
: Use the constructor for the next supported class. Call .class2()
on the object to see in which order the methods will be tried. This will usually
be equivalent to "array"
"list"
: We define as a list and repair attributes
opts_package_version(constructor = c("package_version", "next", "list"), ...)
opts_package_version(constructor = c("package_version", "next", "list"), ...)
constructor |
String. Name of the function used to construct the object. |
... |
Additional options used by user defined constructors through the |
An object of class <constructive_options/constructive_options_package_version>
Depending on constructor
, we construct the object as follows:
"pairlist"
(default): Build the object using a pairlist()
call.
"pairlist2"
: Build the object using a rlang::pairlist2()
call.
opts_pairlist(constructor = c("pairlist", "pairlist2"), ...)
opts_pairlist(constructor = c("pairlist", "pairlist2"), ...)
constructor |
String. Name of the function used to construct the object, see Details section. |
... |
Additional options used by user defined constructors through the |
An object of class <constructive_options/constructive_options_pairlist>
These options will be used on objects of class 'POSIXct'.
opts_POSIXct( constructor = c("as.POSIXct", ".POSIXct", "as_datetime", "as.POSIXct.numeric", "as_datetime.numeric", "next", "atomic"), ..., origin = "1970-01-01" )
opts_POSIXct( constructor = c("as.POSIXct", ".POSIXct", "as_datetime", "as.POSIXct.numeric", "as_datetime.numeric", "next", "atomic"), ..., origin = "1970-01-01" )
constructor |
String. Name of the function used to construct the object, see Details section. |
... |
Additional options used by user defined constructors through the |
origin |
Origin to be used, ignored when irrelevant. |
Depending on constructor
, we construct the object as follows:
"as.POSIXct"
(default): Build the object using a as.POSIXct()
call on a
character vector.
".POSIXct"
: Build the object using a .POSIXct()
call on a numeric vector.
"as_datetime"
: Build the object using a lubridate::as_datetime()
call on
a character vector.
"next"
: Use the constructor for the next supported class. Call .class2()
on the object to see in which order the methods will be tried.
"atomic"
: We define as an atomic vector and repair attributes.
If the data is not appropriate for a constructor we fall back to another one
appropriately. In particular corrupted POSIXct objects such as those defined
on top of integers (or worse) are all constructed with the ".POSIXct"
constructor.
An object of class <constructive_options/constructive_options_POSIXct>
These options will be used on objects of class 'POSIXlt'.
opts_POSIXlt(constructor = c("as.POSIXlt", "next", "list"), ...)
opts_POSIXlt(constructor = c("as.POSIXlt", "next", "list"), ...)
constructor |
String. Name of the function used to construct the object, see Details section. |
... |
Additional options used by user defined constructors through the |
Depending on constructor
, we construct the object as follows:
"as.POSIXlt"
(default): Build the object using a as.POSIXlt()
call on a
character vector.
"next"
: Use the constructor for the next supported class. Call .class2()
on the object to see in which order the methods will be tried.
"list"
: We define as a list and repair attributes.
An object of class <constructive_options/constructive_options_POSIXlt>
These options will be used on objects of class 'quosure'.
opts_quosure(constructor = c("new_quosure", "next", "language"), ...)
opts_quosure(constructor = c("new_quosure", "next", "language"), ...)
constructor |
String. Name of the function used to construct the object, see Details section. |
... |
Additional options used by user defined constructors through the |
Depending on constructor
, we construct the object as follows:
"new_quosure"
(default): Build the object using a new_quosure()
call on a
character vector.
"next"
: Use the constructor for the next supported class. Call .class2()
on the object to see in which order the methods will be tried.
"language"
: We define as an language object and repair attributes.
An object of class <constructive_options/constructive_options_quosure>
These options will be used on objects of class 'quosures'.
opts_quosures(constructor = c("new_quosures", "next", "list"), ...)
opts_quosures(constructor = c("new_quosures", "next", "list"), ...)
constructor |
String. Name of the function used to construct the object, see Details section. |
... |
Additional options used by user defined constructors through the |
Depending on constructor
, we construct the object as follows:
"as_quosures"
(default): Build the object using a as_quosures()
call on a
character vector.
"next"
: Use the constructor for the next supported class. Call .class2()
on the object to see in which order the methods will be tried.
"list"
: We define as an list object and repair attributes.
An object of class <constructive_options/constructive_options_quosures>
Depending on constructor
, we construct the object as follows:
"R_system_version"
: We use R_system_version()
"next"
: Use the constructor for the next supported class. Call .class2()
on the object to see in which order the methods will be tried. This will usually
be equivalent to "list"
"list"
: We define as a list and repair attributes
opts_R_system_version(constructor = c("R_system_version", "next", "list"), ...)
opts_R_system_version(constructor = c("R_system_version", "next", "list"), ...)
constructor |
String. Name of the function used to construct the object. |
... |
Additional options used by user defined constructors through the |
An object of class <constructive_options/constructive_options_R_system_version>
These options will be used on objects of class 'R6'.
opts_R6(constructor = c("R6Class", "next"), ...)
opts_R6(constructor = c("R6Class", "next"), ...)
constructor |
String. Name of the function used to construct the object. |
... |
Additional options used by user defined constructors through the |
Depending on constructor
, we construct the object as follows:
"R6Class"
(default): We build the object using R6Class()$new()
, see details.
"next"
: Use the constructor for the next supported class.
Objects of class "R6" are harder to construct than "R6ClassGenerator" objects,
because 'constructive' doesn't know by default the constructor (i.e. class
generator) that was used to build them. So what we do is we build a class
generator that generates this object by default. This is why the generated code
is in the form R6Class()$new()
.
Another layer of complexity is added when the object features an
initialize()
method, we cannot implement it in the class generator because
it might change the behavior of $new()
and return a wrong result (or fail).
For this reason the initialize()
method when it exists is repaired as an
extra step.
construct_diff()
works well to inspect the differences between two R6
objects where alternatives like waldo::compare()
or base::all.equal()
don't return anything informative.
An object of class <constructive_options/constructive_options_R6>
These options will be used on objects of class 'R6ClassGenerator'.
opts_R6ClassGenerator(constructor = c("R6Class", "next"), ...)
opts_R6ClassGenerator(constructor = c("R6Class", "next"), ...)
constructor |
String. Name of the function used to construct the object. |
... |
Additional options used by user defined constructors through the |
Depending on constructor
, we construct the object as follows:
"R6Class"
(default): We build the object using R6Class()
.
"next"
: Use the constructor for the next supported class.
An object of class <constructive_options/constructive_options_R6ClassGenerator>
These options will be used on objects of type 'raw'.
Depending on constructor
, we construct the object as follows:
"as.raw"
(default): Use as.raw()
, or raw()
when relevant
"charToRaw"
: Use charToRaw()
on a string, if the a raw vector contains
a zero we fall back to the "as.raw" constructor.
To set options on all atomic types at once see opts_atomic().
opts_raw( constructor = c("as.raw", "charToRaw"), ..., trim = NULL, fill = c("default", "rlang", "+", "...", "none"), compress = TRUE, representation = c("hexadecimal", "decimal") )
opts_raw( constructor = c("as.raw", "charToRaw"), ..., trim = NULL, fill = c("default", "rlang", "+", "...", "none"), compress = TRUE, representation = c("hexadecimal", "decimal") )
constructor |
String. Name of the function used to construct the object. |
... |
Additional options used by user defined constructors through the |
trim |
|
fill |
String. Method to use to represent the trimmed elements. See |
compress |
Boolean. If |
representation |
For "as.raw" constructor. Respectively generate output
in the formats |
An object of class <constructive_options/constructive_options_raw>
These options will be used on objects of class 'rowwise_df'.
opts_rowwise_df(constructor = c("default", "next", "list"), ...)
opts_rowwise_df(constructor = c("default", "next", "list"), ...)
constructor |
String. Name of the function used to construct the object, see Details section. |
... |
Additional options used by user defined constructors through the |
Depending on constructor
, we construct the object as follows:
"next"
: Use the constructor for the next supported class. Call .class2()
on the object to see in which order the methods will be tried.
"list"
: We define as an list object and repair attributes.
An object of class <constructive_options/constructive_options_rowwise_df>
These options will be used on objects of class 'S4'. Note that the support for S4 is very experimental so might easily break. Please report issues if it does.
opts_S4(constructor = c("new"), ...)
opts_S4(constructor = c("new"), ...)
constructor |
String. Name of the function used to construct the object, see Details section. |
... |
Additional options used by user defined constructors through the |
An object of class <constructive_options/constructive_options_S4>
These options will be used on objects of class 'tbl_df', also known as tibbles.
opts_tbl_df( constructor = c("tibble", "tribble", "next", "list"), ..., trailing_comma = TRUE, justify = c("left", "right", "centre", "none"), recycle = TRUE )
opts_tbl_df( constructor = c("tibble", "tribble", "next", "list"), ..., trailing_comma = TRUE, justify = c("left", "right", "centre", "none"), recycle = TRUE )
constructor |
String. Name of the function used to construct the object, see Details section. |
... |
Additional options used by user defined constructors through the |
trailing_comma |
Boolean. Whether to leave a trailing comma at the end of the constructor call calls |
justify |
String. Justification for columns if |
recycle |
Boolean. For the |
Depending on constructor
, we construct the object as follows:
"tibble"
(default): Wrap the column definitions in a tibble::tibble()
call.
"tribble"
: We build the object using tibble::tribble()
if possible, and fall
back to tibble::tibble()
.
"next"
: Use the constructor for the next supported class. Call .class2()
on the object to see in which order the methods will be tried.
"list"
: Use list()
and treat the class as a regular attribute.
An object of class <constructive_options/constructive_options_tbl_df>
Depending on constructor
, we construct the object as follows:
"ts"
: We use ts()
"next"
: Use the constructor for the next supported class. Call .class2()
on the object to see in which order the methods will be tried. This will usually
be equivalent to "atomic"
"atomic"
: We define as an atomic vector and repair attributes
opts_ts(constructor = c("ts", "next", "atomic"), ...)
opts_ts(constructor = c("ts", "next", "atomic"), ...)
constructor |
String. Name of the function used to construct the object. |
... |
Additional options used by user defined constructors through the |
An object of class <constructive_options/constructive_options_ts>
These options will be used on objects of class 'data.table'.
opts_vctrs_list_of(constructor = c("list_of", "next", "list"), ...)
opts_vctrs_list_of(constructor = c("list_of", "next", "list"), ...)
constructor |
String. Name of the function used to construct the object, see Details section. |
... |
Additional options used by user defined constructors through the |
Depending on constructor
, we construct the object as follows:
"list_of"
(default): Wrap the column definitions in a list_of()
call.
"list"
: Use list()
and treat the class as a regular attribute.
An object of class <constructive_options/constructive_options_vctrs_list_of>
weakref
These options will be used on objects of type weakref
. weakref
objects
are rarely encountered and there is no base R function to create them. However
rlang has a new_weakref
function that we can use.
opts_weakref(constructor = c("new_weakref"), ...)
opts_weakref(constructor = c("new_weakref"), ...)
constructor |
String. Name of the constructor. |
... |
Additional options used by user defined constructors through the |
An object of class <constructive_options/constructive_options_array>
These options will be used on objects of class 'xts'.
opts_xts(constructor = c("as.xts.matrix", "next"), ...)
opts_xts(constructor = c("as.xts.matrix", "next"), ...)
constructor |
String. Name of the function used to construct the object. |
... |
Additional options used by user defined constructors through the |
Depending on constructor
, we construct the object as follows:
"as.xts.matrix"
(default): We build the object using xts::as.xts.matrix()
.
"as.xts.data.frame"
: We build the object using xts::as.xts.data.frame()
,
this is probably the most readable option but couldn't be made the default
constructor because it requires the 'xts' package to be installed .
"xts"
: We build the object using xts::xts()
.
".xts"
: We build the object using xts::.xts()
.
"next"
: Use the constructor for the next supported class.
An object of class <constructive_options/constructive_options_xts>
These options will be used on objects of class 'yearmon'.
opts_yearmon(constructor = c("as.yearmon", "yearmon", "next"), ...)
opts_yearmon(constructor = c("as.yearmon", "yearmon", "next"), ...)
constructor |
String. Name of the function used to construct the object. |
... |
Additional options used by user defined constructors through the |
Depending on constructor
, we construct the object as follows:
"as.yearmon"
(default): We build the object using zoo::as.yearmon()
on
a string in the format "2000 Q3"
.
"yearmon"
: We build the object using zoo::yearmon()
on a double in the
format 2000.5
"next"
: Use the constructor for the next supported class.
An object of class <constructive_options/constructive_options_yearmon>
These options will be used on objects of class 'yearqtr'.
opts_yearqtr(constructor = c("as.yearqtr", "yearqtr", "next"), ...)
opts_yearqtr(constructor = c("as.yearqtr", "yearqtr", "next"), ...)
constructor |
String. Name of the function used to construct the object. |
... |
Additional options used by user defined constructors through the |
Depending on constructor
, we construct the object as follows:
"as.yearqtr"
(default): We build the object using zoo::as.yearqtr()
on
a string in the format "2000 Q3"
.
"yearqtr"
: We build the object using zoo::yearqtr()
on a double in the
format 2000.5
"next"
: Use the constructor for the next supported class.
An object of class <constructive_options/constructive_options_yearqtr>
These options will be used on objects of class 'zoo'.
opts_zoo(constructor = c("zoo", "next"), ...)
opts_zoo(constructor = c("zoo", "next"), ...)
constructor |
String. Name of the function used to construct the object. |
... |
Additional options used by user defined constructors through the |
Depending on constructor
, we construct the object as follows:
"zoo"
(default): We build the object using zoo::zoo()
.
"next"
: Use the constructor for the next supported class.
An object of class <constructive_options/constructive_options_zoo>
These options will be used on objects of class 'zooreg'.
opts_zooreg(constructor = c("zooreg", "next"), ...)
opts_zooreg(constructor = c("zooreg", "next"), ...)
constructor |
String. Name of the function used to construct the object. |
... |
Additional options used by user defined constructors through the |
Depending on constructor
, we construct the object as follows:
"zooreg"
(default): We build the object using zoo::zooreg()
, using the
start
and frequency
arguments.
"next"
: Use the constructor for the next supported class.
An object of class <constructive_options/constructive_options_zooreg>
These opts_*()
functions are not extensively documented yet. Hopefully
the signature is self explanatory, if not please
raise an issue
opts_NULL(constructor = "NULL", ...) opts_bibentry(constructor = c("bibentry", "next"), ...) opts_citationFooter(constructor = c("citFooter", "next"), ...) opts_citationHeader(constructor = c("citHeader", "next"), ...) opts_difftime(constructor = c("as.difftime", "next"), ...) opts_error(constructor = c("errorCondition", "next"), ...) opts_expression(constructor = c("default"), ...) opts_CoordCartesian( constructor = c("coord_cartesian", "next", "environment"), ... ) opts_CoordFixed(constructor = c("coord_fixed", "next", "environment"), ...) opts_CoordFlip(constructor = c("coord_flip", "next", "environment"), ...) opts_CoordMap(constructor = c("coord_map", "next", "environment"), ...) opts_CoordMunch(constructor = c("coord_munch", "next", "environment"), ...) opts_CoordPolar(constructor = c("coord_polar", "next", "environment"), ...) opts_CoordQuickmap( constructor = c("coord_quickmap", "next", "environment"), ... ) opts_CoordSf(constructor = c("coord_sf", "next", "environment"), ...) opts_CoordTrans(constructor = c("coord_trans", "next", "environment"), ...) opts_FacetWrap( constructor = c("facet_wrap", "ggproto", "next", "environment"), ... ) opts_Scale(constructor = c("default", "next", "environment"), ...) opts_ScalesList(constructor = c("ScalesList", "next", "list"), ...) opts_element_blank(constructor = c("element_blank", "next", "list"), ...) opts_element_grob(constructor = c("element_grob", "next", "list"), ...) opts_element_line(constructor = c("element_line", "next", "list"), ...) opts_element_rect(constructor = c("element_rect", "next", "list"), ...) opts_element_render(constructor = c("element_render", "next", "list"), ...) opts_element_text(constructor = c("element_text", "next", "list"), ...) opts_ggproto(constructor = c("default", "next", "environment"), ...) opts_labels(constructor = c("labs", "next", "list"), ...) opts_margin(constructor = c("margin", "next", "double"), ...) opts_rel(constructor = c("rel", "next", "double"), ...) opts_theme(constructor = c("theme", "next", "list"), ...) opts_uneval(constructor = c("aes", "next", "list"), ...) opts_waiver(constructor = c("waiver", "next", "list"), ...) opts_noquote(constructor = c("noquote", "next"), ...) opts_person(constructor = c("person", "next"), ...) opts_simpleCondition(constructor = c("simpleCondition", "next"), ...) opts_simpleError(constructor = c("simpleError", "next"), ...) opts_simpleMessage(constructor = c("simpleMessage", "next"), ...) opts_simpleUnit(constructor = c("unit", "next", "double"), ...) opts_simpleWarning(constructor = c("simpleWarning", "next"), ...) opts_warning(constructor = c("warningCondition", "next"), ...)
opts_NULL(constructor = "NULL", ...) opts_bibentry(constructor = c("bibentry", "next"), ...) opts_citationFooter(constructor = c("citFooter", "next"), ...) opts_citationHeader(constructor = c("citHeader", "next"), ...) opts_difftime(constructor = c("as.difftime", "next"), ...) opts_error(constructor = c("errorCondition", "next"), ...) opts_expression(constructor = c("default"), ...) opts_CoordCartesian( constructor = c("coord_cartesian", "next", "environment"), ... ) opts_CoordFixed(constructor = c("coord_fixed", "next", "environment"), ...) opts_CoordFlip(constructor = c("coord_flip", "next", "environment"), ...) opts_CoordMap(constructor = c("coord_map", "next", "environment"), ...) opts_CoordMunch(constructor = c("coord_munch", "next", "environment"), ...) opts_CoordPolar(constructor = c("coord_polar", "next", "environment"), ...) opts_CoordQuickmap( constructor = c("coord_quickmap", "next", "environment"), ... ) opts_CoordSf(constructor = c("coord_sf", "next", "environment"), ...) opts_CoordTrans(constructor = c("coord_trans", "next", "environment"), ...) opts_FacetWrap( constructor = c("facet_wrap", "ggproto", "next", "environment"), ... ) opts_Scale(constructor = c("default", "next", "environment"), ...) opts_ScalesList(constructor = c("ScalesList", "next", "list"), ...) opts_element_blank(constructor = c("element_blank", "next", "list"), ...) opts_element_grob(constructor = c("element_grob", "next", "list"), ...) opts_element_line(constructor = c("element_line", "next", "list"), ...) opts_element_rect(constructor = c("element_rect", "next", "list"), ...) opts_element_render(constructor = c("element_render", "next", "list"), ...) opts_element_text(constructor = c("element_text", "next", "list"), ...) opts_ggproto(constructor = c("default", "next", "environment"), ...) opts_labels(constructor = c("labs", "next", "list"), ...) opts_margin(constructor = c("margin", "next", "double"), ...) opts_rel(constructor = c("rel", "next", "double"), ...) opts_theme(constructor = c("theme", "next", "list"), ...) opts_uneval(constructor = c("aes", "next", "list"), ...) opts_waiver(constructor = c("waiver", "next", "list"), ...) opts_noquote(constructor = c("noquote", "next"), ...) opts_person(constructor = c("person", "next"), ...) opts_simpleCondition(constructor = c("simpleCondition", "next"), ...) opts_simpleError(constructor = c("simpleError", "next"), ...) opts_simpleMessage(constructor = c("simpleMessage", "next"), ...) opts_simpleUnit(constructor = c("unit", "next", "double"), ...) opts_simpleWarning(constructor = c("simpleWarning", "next"), ...) opts_warning(constructor = c("warningCondition", "next"), ...)
constructor |
String. Method used to construct the object, often the name of a function. |
... |
Additional options used by user defined constructors through the |
.cstr_new_class()
and .cstr_new_constructor()
open new unsaved scripts,
optionally commented, that can be used as templates to define new constructors.
If the class is already supported and you want to implement a new constructor,
use .cstr_new_constructor()
, otherwise use .cstr_new_class()
.
.cstr_new_class( class = c("CLASS", "PARENT_CLASS"), constructor = "PKG::CONSTRUCTOR", commented = FALSE ) .cstr_new_constructor( class = c("CLASS", "PARENT_CLASS"), constructor = "PKG::CONSTRUCTOR", commented = FALSE )
.cstr_new_class( class = c("CLASS", "PARENT_CLASS"), constructor = "PKG::CONSTRUCTOR", commented = FALSE ) .cstr_new_constructor( class = c("CLASS", "PARENT_CLASS"), constructor = "PKG::CONSTRUCTOR", commented = FALSE )
class |
Class to support, provide the full |
constructor |
Name of the constructor, usually the name of the function you can to use to build the object. If not you might need to adjust the script. |
commented |
Boolean. Whether to include comments in the template. |
We suggest the following workflow :
Call these functions, with commented = TRUE
for more guidance
Save the scripts unchanged in your package
devtools::document()
: this will register the S3 methods
Try construct()
on your new object, it should print a call to your chosen
constructor
Tweak the code, in particular the definition of args
The README of the example extension package
'constructive.example'
guides you through the process. See also {constructive}'s own code
and vignette("extend-constructive")
for more details.
Both function return NULL
invisibly and are called for side effects