Learn R Programming

packageRank (version 0.3.5)

plot.cranDownloads: Plot method for cranDownloads().

Description

Plot method for cranDownloads().

Usage

# S3 method for cranDownloads
plot(x, graphics = "auto", points = "auto",
  log.count = FALSE, smooth = FALSE, se = FALSE, f = 1/3,
  package.version = FALSE, r.version = FALSE, population.plot = FALSE,
  multi.plot = FALSE, same.xy = TRUE, legend.loc = "topleft",
  dev.mode = FALSE, ...)

Arguments

x

object.

graphics

Character. "auto", "base" or "ggplot2".

points

Character of Logical. Plot points. "auto", TRUE, FALSE.

log.count

Logical. Logarithm of package downloads.

smooth

Logical. Add smoother.

se

Logical. Works only with graphics = "ggplot2".

f

Numeric. stats::lowess() smoother window. For use with graphics = "base" only.

package.version

Logical. Add latest package release dates.

r.version

Logical. Add R release dates.

population.plot

Logical. Plot population plot.

multi.plot

Logical.

same.xy

Logical. Use same scale for multiple packages when graphics = "base".

legend.loc

Character.

dev.mode

Logical. Use packageHistory0() to scrape CRAN.

...

Additional plotting parameters.

Value

A base R or ggplot2 plot.

Examples

Run this code
# NOT RUN {
plot(cranDownloads(packages = c("Rcpp", "rlang", "data.table")))
plot(cranDownloads(packages = c("Rcpp", "rlang", "data.table"), when = "last-month"))
plot(cranDownloads(packages = "R", from = "2020-01-01", to = "2020-01-01"))
plot(cranDownloads(packages = "R", from = 2020))
# }

Run the code above in your browser using DataLab