Learn R Programming

RAhrefs (version 0.1.4)

rah_condition_set: Grouping multiple conditions for an Ahrefs API query

Description

Grouping multiple conditions for an Ahrefs API query

Usage

rah_condition_set(...)

Arguments

multiple condition arguments created by rah_condition function

Value

character string of parameters for API

See Also

Other Ahrefs conditions: rah_condition

Examples

Run this code
# NOT RUN {
    
# }
# 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)
 
# }

Run the code above in your browser using DataLab