cran_new {pkgsearch} | R Documentation |
New CRAN packages
Description
List the latest new CRAN packages.
Usage
cran_new(from = "last-week", to = "now", last = Inf)
Arguments
from |
Start of the time interval to query. Possible values:
|
to |
End of the time interval to query. It accepts the same kinds
of values as |
last |
Integer to limit the number of returned packages. |
Value
Data frame of package descriptions.
Examples
# Last week
cran_new("last-week")
# Last month
cran_new("last-month")
# Last 5 days
cran_new(from = 5)
# From a given date, but at most 10
cran_new(from = "2021-04-06", last = 10)
# March of 2021
cran_new(from = "2021-03-01", to = "2021-04-01")
[Package pkgsearch version 3.1.3 Index]