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
I think the problem is that you load isfar data.frame but you overwrite it by value returned by load.
load
isfar
Try either:
load("C:/Users/isfar.RData") head(isfar)
Or more general way
load("C:/Users/isfar.RData", ex <- new.env()) ls.str(ex)