-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathpkg_history.Rd
49 lines (46 loc) · 4.07 KB
/
pkg_history.Rd
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
39
40
41
42
43
44
45
46
47
48
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/search.R
\name{pkg_history}
\alias{pkg_history}
\title{Query the history of a CRAN package}
\usage{
pkg_history(pkg)
}
\arguments{
\item{pkg}{Package name.}
}
\value{
A data frame, with one row per package version. The columns are
the entries of the \code{DESCRIPTION} files in the released package
versions.
}
\description{
Query the history of a CRAN package
}
\section{Examples}{
\if{html}{\out{<div class="sourceCode r">}}\preformatted{pkg_history("ggplot2")
}\if{html}{\out{</div>}}\if{html}{\out{
<div class="asciicast" style="color: #172431;font-family: 'Fira Code',Monaco,Consolas,Menlo,'Bitstream Vera Sans Mono','Powerline Symbols',monospace;line-height: 1.300000"><pre>
#> <span style="color: #999999;"># A data frame: 44 × 30</span>
#> Package Type Title Version Date Author Maint…¹ Descr…² License
#> <span style="color: #c2c2c2;">*</span> <span style="font-style: italic;color: #999999;"><chr></span> <span style="font-style: italic;color: #999999;"><chr></span> <span style="font-style: italic;color: #999999;"><chr></span> <span style="font-style: italic;color: #999999;"><chr></span> <span style="font-style: italic;color: #999999;"><chr></span> <span style="font-style: italic;color: #999999;"><chr></span> <span style="font-style: italic;color: #999999;"><chr></span> <span style="font-style: italic;color: #999999;"><chr></span> <span style="font-style: italic;color: #999999;"><chr></span>
#> <span style="color: #c2c2c2;"> 1</span> ggplot2 Package An impl… 0.5 2007… Hadle… Hadley… <span style="color: #999999;">"</span>An im… GPL
#> <span style="color: #c2c2c2;"> 2</span> ggplot2 Package An impl… 0.5.1 2007… Hadle… Hadley… <span style="color: #999999;">"</span>An im… GPL
#> <span style="color: #c2c2c2;"> 3</span> ggplot2 Package An impl… 0.5.2 2007… Hadle… Hadley… <span style="color: #999999;">"</span>An im… GPL
#> <span style="color: #c2c2c2;"> 4</span> ggplot2 Package An impl… 0.5.4 2007… Hadle… Hadley… <span style="color: #999999;">"</span>An im… GPL
#> <span style="color: #c2c2c2;"> 5</span> ggplot2 Package An impl… 0.5.5 2007… Hadle… Hadley… <span style="color: #999999;">"</span>An im… GPL
#> <span style="color: #c2c2c2;"> 6</span> ggplot2 Package An impl… 0.5.6 2007… Hadle… Hadley… <span style="color: #999999;">"</span>An im… GPL
#> <span style="color: #c2c2c2;"> 7</span> ggplot2 Package An impl… 0.5.7 2007… Hadle… Hadley… <span style="color: #999999;">"</span>An im… GPL
#> <span style="color: #c2c2c2;"> 8</span> ggplot2 Package An impl… 0.6 2008… Hadle… Hadley… <span style="color: #999999;">"</span>An im… GPL
#> <span style="color: #c2c2c2;"> 9</span> ggplot2 Package An impl… 0.7 2008… Hadle… Hadley… <span style="color: #999999;">"</span>An im… GPL
#> <span style="color: #c2c2c2;">10</span> ggplot2 Package An impl… 0.8 2008… Hadle… Hadley… <span style="color: #999999;">"</span>An im… GPL
#> <span style="color: #999999;"># … with 34 more rows, 21 more variables: SaveImage <chr>,</span>
#> <span style="color: #999999;"># LazyData <chr>, Packaged <chr>, crandb_file_date <chr>, date <chr>,</span>
#> <span style="color: #999999;"># dependencies <list>, URL <chr>, LazyLoad <chr>, Extends <chr>,</span>
#> <span style="color: #999999;"># Collate <chr>, Repository <chr>, `Date/Publication` <chr>,</span>
#> <span style="color: #999999;"># NeedsCompilation <chr>, VignetteBuilder <chr>, BugReports <chr>,</span>
#> <span style="color: #999999;"># `Authors@R` <chr>, RoxygenNote <chr>, Encoding <chr>, MD5sum <chr>,</span>
#> <span style="color: #999999;"># `Config/Needs/website` <chr>, `Config/testthat/edition` <chr>, …</span>
</pre></div>
}}
}