当我运行以下代码时:
s1 <- cspade(x, parameter = list(support = 0.1, maxsize = 1, maxlen = 1),
control = list(verbose = TRUE))
我收到以下错误:
Total elapsed time 0.00286102
1 partition(s), 0 MB [0.12s]
mining transactions ...MINSUPPORT 1 out of 4 sequences
reading sequences ...cannot open file
'C:\Users\ERKANE~1\AppData\Local\Temp\RtmpohPsWy\cspade3894f1b4b9f.out': No
such file or directoryError in file(con, "r") : cannot open the connection
当我检查目录时,看不到任何.out
文件。我试图将TMPDIR更改为另一个位置,但仍然收到相同的错误。我以管理员身份运行r-studio,但仍然收到相同的错误。我可以在同一目录write.csv(mtcars,paste(tempdir(),"mtcars.csv",sep="\\"))
中创建一个文件。有什么想法吗?
我正在使用R版本3.5.1和RStudio-1.1.456。