ts_data: Converts tweets data into time series-like data object.

View source: R/ts_plot.R

ts_dataR Documentation

Converts tweets data into time series-like data object.

Description

Returns data containing the frequency of tweets over a specified interval of time.

Usage

ts_data(data, by = "days", trim = 0L, tz = "UTC")

Arguments

data

Data frame or grouped data frame.

by

Desired interval of time expressed as numeral plus one of "secs", "mins", "hours", "days", "weeks", "months", or "years". If a numeric is provided, the value is assumed to be in seconds.

trim

Number of observations to trim off the front and end of each time series

tz

Time zone to be used, defaults to "UTC" (Twitter default)

Value

Data frame with time, n, and grouping column if applicable.

Examples

if (auth_has_default()) {

## handles of women senators
orgs <- c("_R_Foundation", "ropensci")

## get timelines for each
orgs_tml <- get_timeline(orgs, n = 100)

## get single time series for tweets
ts_data(orgs_tml)

## using weekly intervals
ts_data(orgs_tml, "weeks")
}


rtweet documentation built on Oct. 17, 2023, 1:11 a.m.