Created
February 4, 2014 14:03
Revisions
-
randyzwitch created this gist
Feb 4, 2014 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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" )