R/query.R

Defines functions fix_query build_query

# Fix query fields
#' @include utils.R
fix_query <- function(x) {
    stopifnot(is.list(x))
    x <- compact(x)
    snames <- c("metrics", "dimensions", "sort")
    x[names(x) %in% snames] <- lapply(x[names(x) %in% snames], strip_spaces)
    onames <- c("filters", "segment")
    x[names(x) %in% onames] <- lapply(x[names(x) %in% onames], strip_ops)
    dnames <- c("start.date", "end.date")
    x[names(x) %in% dnames] <- lapply(x[names(x) %in% dnames], as.character)
    return(x)
}

# Set query
build_query <- function(...) {
    dots <- list(...)
    query <- fix_query(dots)
    return(query)
}

Try the RGA package in your browser

Any scripts or data that you put into this service are public.

RGA documentation built on May 2, 2019, 6:47 a.m.