1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/ts_plot.R
\name{ts_plot}
\alias{ts_plot}
\title{Plots tweets data as a time series-like data object.}
\usage{
ts_plot(data, by = "days", trim = 0L, tz = "UTC", ...)
}
\arguments{
\item{data}{Data frame or grouped data frame.}
\item{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.}
\item{trim}{The number of observations to drop off the beginning
and end of the time series.}
\item{tz}{Time zone to be used, defaults to "UTC" (Twitter default)}
\item{...}{Other arguments passed to
\code{\link[ggplot2:geom_path]{ggplot2::geom_line()}}.}
}
\value{
If
\href{https://cran.r-project.org/package=ggplot2}{ggplot2} is
installed then a \code{\link[ggplot2:ggplot]{ggplot2::ggplot()}} plot object.
}
\description{
Creates a ggplot2 plot of the frequency of tweets over a specified
interval of time. \ifelse{html}{\href{https://lifecycle.r-lib.org/articles/stages.html#deprecated}{\figure{lifecycle-deprecated.svg}{options: alt='[Deprecated]'}}}{\strong{[Deprecated]}}
}
\seealso{
\code{\link{rtweet-deprecated}}
}
\concept{ts_data}
\keyword{internal}
|