I'm having difficulty loading a file so that it doesn't lose its dimensions. So here is where I'm at:
> mood_data <- read.table("http://www.psychology.mcmaster.ca/bennett/psy710/datasets/mood_data.Rdata")
If I do this it just gives me all the information disorganized in one line. I also tried:
> mood_data <- url("http://www.psychology.mcmaster.ca/bennett/psy710/datasets/mood_data.Rdata")
> load(mood_data)
If I do this I get this weird stuff that doesn't make any sense to me.
You should use
load
for.RData
files. This works for me.