On 6/6/2005 4:43 PM, Omar Lakkis wrote:
How can I get a list of the names of all exported functions in a library?
I load my library using library() and then want to dynamically get all
functions that start with "test."  to dynamically execute them.

Use search() to see all the _packages_ that have been loaded. If yours is second in the list (the typical spot just after calling the unfortunately named library() function), then ls(2) will list all of its exports.

Duncan Murdoch

______________________________________________
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

Reply via email to