jaspDeps | R Documentation |
jaspDeps - An object to store jaspDependencies
jaspDeps(
options = NULL,
optionsFromObject = NULL,
optionContainsValue = NULL,
nestedOptions = NULL,
nestedOptionsContainsValue = NULL
)
options |
passed to |
optionsFromObject |
passed to |
optionContainsValue |
passed to |
nestedOptions |
passed to |
nestedOptionsContainsValue |
passed to |
The function is a convenience wrapper to set dependencies in the constructor of jaspObjects. For example, this code
container <- createJaspContainer(title = "Title") container$dependOn(optionContainsValue = list(variables = "contNormal"))
is identical to
container <- createJaspContainer( title = "Title", dependencies = jaspDeps(optionContainsValue = list(variables = "contNormal")) )
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.