Skip to content

Instantly share code, notes, and snippets.

@randyzwitch
Created February 4, 2014 14:03

Revisions

  1. randyzwitch created this gist Feb 4, 2014.
    22 changes: 22 additions & 0 deletions rsitecatalyst-search.R
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,22 @@
    #Top 100 Pages where the pagename starts with "Categories"
    #Uses searchKW argument
    queue_ranked_pages_search <- QueueRanked("production",
    "2013-01-01",
    "2014-01-28",
    c("pageviews", "visits"),
    "page",
    top = "100",
    searchKW = "^Categories"
    )

    #Top 100 Pages where the pagename starts with "Categories" OR contains "Home Page"
    #Uses searchKW and searchType arguments
    queue_ranked_pages_search_or <- QueueRanked("mlcpwmproduction",
    "2013-01-01",
    "2014-01-28",
    c("pageviews", "visits"),
    "page",
    top = "100",
    searchKW = c("^Categories", "Home Page"),
    searchType = "OR"
    )