How to see data from .RData file?

后端 未结 8 1796
梦谈多话
梦谈多话 2020-11-29 02:23

I saw some similar qestions and I tried to work it out on my own, but I couldn\'t. This is my problem:

I have to load a isfar.RData file to use it in other computati

8条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-11-29 02:57

    It sounds like the only varaible stored in the .RData file was one named isfar.

    Are you really sure that you saved the table? The command should have been:

    save(the_table, file = "isfar.RData")
    

    There are many ways to examine a variable.

    Type it's name at the command prompt to see it printed. Then look at str, ls.str, summary, View and unclass.

提交回复
热议问题