merge_kwargs | R Documentation |
Merge two kwarg lists. If a kwarg is present in both lists but with different values, an error is raised.
merge_kwargs(
kwargsA,
kwargsB,
labelA = "first kwarg(s)",
labelB = "second kwarg(s)",
extraMsg = "[DEFAULT]"
)
kwargsA |
The first list of kwargs. |
kwargsB |
The second list of kwargs. If duplicates are present, the default
message recommends the user to remove the kwarg here in favor of placing the
correct one in |
labelA |
(Optional) Descriptor of |
labelB |
(Optional) Descriptor of |
extraMsg |
(Optional) Extra text for error statement. "[DEFAULT]" (default) will use this message: "Note that a kwarg only has to be provided to one of these. Place the correct value in the first location and remove the kwarg from the second location". |
A list with the union of kwargsA
and kwargsB
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.