jmoreira@fe.up.pt
2005-Apr-04 13:31 UTC
[R] Error in save.image(): image could not be renamed
Hello, I am doing intensive tests on SVMs parameter selection. Once a while I got the error: Error in save.image(): image could not be renamed and is left in .RDataTmp1 I cannot use the information saves in .RDataTmp1. When that happens I loose several hours of tests. It happens, ussualy when the computer is locked, i.e., there is not other relevant processes running on. I can do tests and get the problem an repeat axactly the same tests and everythings runs o.k. Thanks for any help Joao Moreira
Peter Dalgaard
2005-Apr-04 13:52 UTC
[R] Error in save.image(): image could not be renamed
jmoreira at fe.up.pt writes:> Hello, > > I am doing intensive tests on SVMs parameter selection. Once a while I got the > error: > Error in save.image(): image could not be renamed and is left in .RDataTmp1> I cannot use the information saves in .RDataTmp1.Why? Anything wrong with load(".RDataTmp1") ?? Or renaming it manually to .RData ?> When that happens I loose > several hours of tests. It happens, ussualy when the computer is locked, i.e., > there is not other relevant processes running on. I can do tests and get the > problem an repeat axactly the same tests and everythings runs o.k.-- O__ ---- Peter Dalgaard Blegdamsvej 3 c/ /'_ --- Dept. of Biostatistics 2200 Cph. N (*) \(*) -- University of Copenhagen Denmark Ph: (+45) 35327918 ~~~~~~~~~~ - (p.dalgaard at biostat.ku.dk) FAX: (+45) 35327907
joerg van den hoff
2005-Apr-04 14:41 UTC
[R] double backslashes in usage section of .Rd files
I have written a package, where a function definition includes a regexp pattern including double backslashes, such as myfunction <- function (pattern = ".*\\.txt$") when I R CMD CHECK the corresponding .Rd file, I get warnings (code/documentation mismatch), if I enforce two backslashes in the documentation print out by \usage { myfunction (pattern = ".*\\\\.txt$") } have I to live with this or is their a way to avoid the warnings (apart from being satisfied with a wrong manpage ...)? regards joerg
joerg van den hoff wrote:> I have written a package, where a function definition includes a regexp > pattern including double backslashes, such as > > myfunction <- function (pattern = ".*\\.txt$") > > when I R CMD CHECK the corresponding .Rd file, I get warnings > (code/documentation mismatch), if I enforce two backslashes in the > documentation print out by > > \usage { myfunction (pattern = ".*\\\\.txt$") } > > have I to live with this or is their a way to avoid the warnings (apart > from being satisfied with a wrong manpage ...)?Can you check with R-devel please? I think this has been fixed. Uwe Ligges> regards > joerg > > ______________________________________________ > R-help at 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