Learn R Programming

RedditExtractoR (version 2.1.5)

reddit_urls: Returns relevant reddit URLs

Description

Returns relevant reddit URLs

Usage

reddit_urls(search_terms = NA, regex_filter = "", subreddit = NA,
  cn_threshold = 0, page_threshold = 1, sort_by = "relevance",
  wait_time = 2)

Arguments

search_terms

A character string to be searched on Reddit.

regex_filter

An optional regular expression filter that will remove URLs with titles that do not match the condition.

subreddit

An optional character string that will restrict the search to the specified subreddits (separated by space).

cn_threshold

Comment number threshold that remove URLs with fewer comments that cn_threshold. 0 by default.

page_threshold

Page threshold that controls the number of pages is going to be searched for a given search word. 1 by default.

sort_by

Sorting parameter, either "comments" (default) or "new".

wait_time

wait time in seconds between page requests. 2 by default and it is also the minimum (API rate limit).

Value

A data frame with URLs (links), number of comments (num_comments), title (title),date (date) and subreddit (subreddit).

Examples

Run this code
# NOT RUN {
example_urls = reddit_urls(search_terms="science")
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab