I would like to investigate what is inside .RData
file.
I tried to load .RData
file and discovered that it consists of string:
load("~/Desktop/expDatDT.RData")
[1] "ret"
How can I obtain data about elements inside this .RData
file?
How can I check data types for elements inside .RData
file?
Thank you!