Are R objects dumped using `dump` readable cross-platform?

浪尽此生 提交于 2019-12-11 05:20:30

问题


I am considering replacing some uses of save, which exports .Rdata files, with dump, which produces text representations of R objects.

Is it safe to assume that files created using dump will be readable by R installed on different operating systems (e.g. linux, mac, windows)?


回答1:


Even those from save() are readable on all platforms -- I would stick with that format if your goal is cross-platform use rather than cross-application use (in which case you need a format read by all applications...).



来源:https://stackoverflow.com/questions/10840741/are-r-objects-dumped-using-dump-readable-cross-platform

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!