How to see data from .RData file?

后端 未结 8 1799
梦谈多话
梦谈多话 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:42

    I think the problem is that you load isfar data.frame but you overwrite it by value returned by load.

    Try either:

    load("C:/Users/isfar.RData") 
    head(isfar)
    

    Or more general way

    load("C:/Users/isfar.RData", ex <- new.env())
    ls.str(ex) 
    

提交回复
热议问题