Greetings, R-ians: I would like to know which version or R was used to create a given package. I think I remember seeing that topic discussed recently but cannot find it among my notes. Can anyone tell me how to determine which version of R created a package? Thanks. Charles Annis, P.E. <mailto:Charles.Annis@StatisticalEngineering.com> Charles.Annis@StatisticalEngineering.com phone: 561-352-9699 eFax: 614-455-3265 <http://www.StatisticalEngineering.com> http://www.StatisticalEngineering.com [[alternative HTML version deleted]]
> library(help=lattice)[...] Built: R 2.6.0; i486-pc-linux-gnu; 2008-01-23 13:52:49; unix [...] G. On Sat, Jan 26, 2008 at 11:44:53AM -0500, Charles Annis, P.E. wrote:> Greetings, R-ians: > > > > I would like to know which version or R was used to create a given package. > I think I remember seeing that topic discussed recently but cannot find it > among my notes. Can anyone tell me how to determine which version of R > created a package? > > > > Thanks. > > > > Charles Annis, P.E. > > <mailto:Charles.Annis at StatisticalEngineering.com> > Charles.Annis at StatisticalEngineering.com > phone: 561-352-9699 > eFax: 614-455-3265 > <http://www.StatisticalEngineering.com> > http://www.StatisticalEngineering.com > > > > > > > [[alternative HTML version deleted]] > > ______________________________________________ > R-help at r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code.-- Csardi Gabor <csardi at rmki.kfki.hu> UNIL DGM
On 26/01/2008 11:44 AM, Charles Annis, P.E. wrote:> Greetings, R-ians: > > > > I would like to know which version or R was used to create a given package. > I think I remember seeing that topic discussed recently but cannot find it > among my notes. Can anyone tell me how to determine which version of R > created a package?You can see which version was used to build the package by looking in the DESCRIPTION file; that information is available in R via something like packageDescription("graphics", fields="Built") Duncan Murdoch> > > Thanks. > > > > Charles Annis, P.E. > > <mailto:Charles.Annis at StatisticalEngineering.com> > Charles.Annis at StatisticalEngineering.com > phone: 561-352-9699 > eFax: 614-455-3265 > <http://www.StatisticalEngineering.com> > http://www.StatisticalEngineering.com > > > > > > > [[alternative HTML version deleted]] > > ______________________________________________ > R-help at r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code.
These also works should you need to capture it: packageDescription("lattice")$Built On Jan 26, 2008 12:04 PM, Gabor Csardi <csardi at rmki.kfki.hu> wrote:> > library(help=lattice) > [...] > Built: R 2.6.0; i486-pc-linux-gnu; 2008-01-23 13:52:49; unix > [...] > > G. > > > On Sat, Jan 26, 2008 at 11:44:53AM -0500, Charles Annis, P.E. wrote: > > Greetings, R-ians: > > > > > > > > I would like to know which version or R was used to create a given package. > > I think I remember seeing that topic discussed recently but cannot find it > > among my notes. Can anyone tell me how to determine which version of R > > created a package? > > > > > > > > Thanks. > > > > > > > > Charles Annis, P.E. > > > > <mailto:Charles.Annis at StatisticalEngineering.com> > > Charles.Annis at StatisticalEngineering.com > > phone: 561-352-9699 > > eFax: 614-455-3265 > > <http://www.StatisticalEngineering.com> > > http://www.StatisticalEngineering.com > > > > > > > > > > > > > > [[alternative HTML version deleted]] > > > > ______________________________________________ > > R-help at r-project.org mailing list > > https://stat.ethz.ch/mailman/listinfo/r-help > > PLEASE do read the posting guide http://www.R-project.org/posting-guide.html > > and provide commented, minimal, self-contained, reproducible code. > > -- > Csardi Gabor <csardi at rmki.kfki.hu> UNIL DGM > > > ______________________________________________ > R-help at r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code. >