Reproduceable Example:
library("ff")
m <- matrix(1:12, 3, 4, dimnames=list(c("r1","r2","r3"), c("m1","m2","m3","m4")))
v <- 1:3
ffm <- as.ff(m)
ffv <- as.ff(v)
d <- data.frame(m, v)
ffd <- ffdf(ffm, v=ffv, row.names=row.names(ffm))
ffsave(ffd,file="C:\\Users\\R.wd\\ff\\ffd")
## Error in system(cmd, input = filelist, intern = TRUE) : 'zip' not found
System: Windows 7 64bit, R 15.2 64bit
Rtools installed
zip 300xn-x64 and unzip 600xn folders set to windows Path already
cmd line working, type zip or unzip it shows function info
Need help! Any suggestion is appreciated.
system( "zip -@ -6 C:\\Users\\R.wd\\ff\\ffd")
? – Valency