One option which may suit your needs is to use the save() function which would allow you to store your matrix to disk without worrying about formatting issues:save(copy_fourgram, file = "copy_fourgram.RData")要再次加载此矩阵时,可以将load()与创建的数据文件的名称一起使用:When you want to load this matrix again, you can use load() with the name of the data file you created:load("copy_fourgram.RData") 这篇关于R将Matrix保存到csv,并作为Matrix加载的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
10-23 16:18