View source: R/crandb-public-api.R
cran_new | R Documentation |
List the latest new CRAN packages.
cran_new(from = "last-week", to = "now", last = Inf)
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. |
Data frame of package descriptions.
# 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")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.