I have a .RData
file that has multiple objects of varying type and size. I can't view by printing, because I can only see half the objects (even when I increase max.print
to its maximum). I also don't think I can write to .txt
file or .csv
file because of the multiple objects and I get the error message:
Error in data.frame(description = "Global Model", dataname = "SCM.RData", :
arguments imply differing number of rows: 1, 10, 11, 20
I've also tried View, and indexing the .Rdata
file to view components separately but no success. Is there another way to view the contents of an .Rdata
file?