Description Usage Arguments Value See Also Examples
View source: R/condition_set.R
Grouping multiple conditions for an Ahrefs API query
1 |
... |
multiple condition arguments created by |
character string of parameters for API
Other Ahrefs conditions: rah_condition
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | ## Not run:
first_condition <- RAhrefs::rah_condition(
column_name = "first_seen",
operator = "GREATER_THAN",
value = "2018-01-01",
is_date = TRUE)
second_condition <- RAhrefs::rah_condition(
column_name = "links",
operator = "GREATER_THAN",
value = "10")
final_condition <- RAhrefs::rah_condition_set(
first_condition,
second_condition)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.