Skip to content
Prev 13273 / 63424 Next

directing print.packageInfo to a file

print.packageInfo does not print to the console, it uses file.show.
For example, on R 1.9.1 patched on Windows XP:
[1] TRUE
NULL
[1] 0


Kurt Hornik <Kurt.Hornik@wu-wien.ac.at> writes:
What is wrong with

     capture.output(print.packageInfo(x, ...), file = NULL)

for what you want?

-k