On Tue, 2 Jan 2007 11:20:10 -0600,
roger koenker <[EMAIL PROTECTED]> wrote:

> Is there a painless way to find the names of all packages on CRAN that
> "Depend" on a specified package?

Maybe this is not too painful:


pkgs <- available.packages()            # repos arg may be useful here
pkgs.dpnd <- pkgs[grep("quantreg", pkgs[, "Depends"]), ]
names(pkgs.dpnd)


-- 
Seb

______________________________________________
R-help@stat.math.ethz.ch 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.

Reply via email to