View source: R/get_argument_sequence.R
get_argument_sequence | R Documentation |
This function returns the sequence of arguments based on the specified argument relation. The argument relation determines the logical relationship between the arguments (e.g., "and", "or").
get_argument_sequence(arguments, argument_relation)
arguments |
The list of arguments. |
argument_relation |
The specified argument relation. If "and", the sequence will be 1:length(arguments). If "or", the sequence will be rep(1, length(arguments)). If a vector is provided, it should have the same length as the number of arguments. |
A numeric vector representing the sequence of arguments.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.