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
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.