我想将Matlab数据集导入R。我得到以下错误:
Error in file(con, open = "rb") : cannot open the connection
In addition: Warning message:
In file(con, open = "rb") :
cannot open file 'data.mat': No such file or directory
使用R.matlab软件包。R将读取.mat文件。尝试一下,但我怀疑你需要在Matlab中做一些类似save('yourMfile.mat')
的事情。然后在R 中
library(R.matlab)
readMat("../input/yourMfile.mat")