SyntaxFix
Write A Post
Hire A Developer
Questions
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)