如何在 R 中打开".m"数据集

  • 本文关键字:数据集 r matlab
  • 更新时间 :
  • 英文 :


我想将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")

相关内容

  • 没有找到相关文章

最新更新