Hi,
pdf(file = NULL) will actually create a file named NA, which is
inconsistent with its documentation. A minimal example:
pdf(file = NULL)
plot(1)
dev.off()
Perhaps this is a bug?
> list.files(pattern = '^NA$')
character(0)
> pdf(file = NULL)
> plot(1)
> dev.off()
null device
1
> lis
Here are some leads:
1)
https://github.com/jeffreyhorner/rapache/commit/c208e0b17eed04e265e7d555bd9f5395ae6ff7cb
2) http://www.rapache.net/rapache-1.1.16.tar.gz
On Thu, 2012-01-19 at 15:03 +, Gísli Leifsson wrote:
> Hi all
>
> I was trying to isntall RApache last week but ran into strnge p