I have an RData "E.g.RData" I loaded it into R console using the load function.
load("E.g.RData")
it has a variable e.g. in RData. I am doing like this -
e <- load("E.g.RData")
then e gets the character vector as "e.g." but I want the contents of e.g. into e.
Is there a way to do it in R?