Displaying 4 results from an estimated 4 matches for "shouldfail".
Did you mean:
should_fail
2005 Sep 01
1
controlling where *.Rout gets printed. Possible?
...mR","ncdf","pathmix","rcdd","rgdal","rpvm",
"Rmpi","RQuantLib","RMySQL",
"RNetCDF","RODBC","ROracle","RScaLAPACK","rsprng","RWinEdt","taskPR")
shouldFail <- theNew %in% failPackages
install.packages( theNew[!shouldFail],dependencies=T)
# VGAM is not in CRAN yet, but Zelig wants it.
# install.packages("VGAM", CRAN="http://www.stat.auckland.ac.nz/~yee");
update.packages(CRAN="http://www.stat.auckland.ac.nz/~yee")...
2006 Apr 05
2
Problems in package management after Linux system upgrade
...y are already installed.
if (sum(needRemoval) >0) remove.packages(installedPackages[needRemoval] )
#update the ones you want to keep
update.packages(ask=F, checkBuilt=T)
#get list of all new packages on CRAN
theNew <- new.packages()
#do any of the new packages belong to the black list?
shouldFail <- theNew %in% failPackages
#install non blacklisted packages that are in theNew list
if (sum(!shouldFail) > 0) install.packages( theNew[!shouldFail],dependencies=T)
# VGAM is not in CRAN yet, but Zelig will use it.
if ( "VGAM" %in% installedPackages)
update.packages(repos=&quo...
2006 Jan 20
2
cron job install/update problems: tcltk can't find display (installing e.g., pbatR)
...y are already installed.
if (sum(needRemoval) >0) remove.packages(installedPackages[needRemoval] )
#update the ones you want to keep
update.packages(ask=F, checkBuilt=T)
#get list of all new packages on CRAN
theNew <- new.packages()
#do any of the new packages belong to the black list?
shouldFail <- theNew %in% failPackages
#install non blacklisted packages that are in theNew list
if (sum(!shouldFail) > 0) install.packages( theNew[!shouldFail],dependencies=T)
--
Paul E. Johnson
Professor, Political Science
1541 Lilac Lane, Room 504
University of Kansas
2006 Jan 20
2
cron job install/update problems: tcltk can't find display (installing e.g., pbatR)
...y are already installed.
if (sum(needRemoval) >0) remove.packages(installedPackages[needRemoval] )
#update the ones you want to keep
update.packages(ask=F, checkBuilt=T)
#get list of all new packages on CRAN
theNew <- new.packages()
#do any of the new packages belong to the black list?
shouldFail <- theNew %in% failPackages
#install non blacklisted packages that are in theNew list
if (sum(!shouldFail) > 0) install.packages( theNew[!shouldFail],dependencies=T)
--
Paul E. Johnson
Professor, Political Science
1541 Lilac Lane, Room 504
University of Kansas