I'm still very new to R, I have no other coding experience, and I don't understand some of the fundamentals, so please bear with me.
I'm trying to do a multiple regression on the data set found at: https://studysites.sagepub.com/dsur/study/DSUR%20Data%20Files/Chapter%207/ChildAggression.dat
The website's answers don't mention any transformation of the data, but suggest one could just go ahead with the lm() function.
aggro <- read.delim("ChildAggression.dat", header = TRUE)
aggro.reg1 <- lm(Aggression ~ Parenting_Style + Sibling_Aggression, data = aggro)
Error in eval(predvars, data, env) : object 'Aggression' not found
I don't understand why it isn't finding the object. Any help is much appreciated.