How to predict a new given value of body using the ml2 model below, and interpret its output (new predicted output only, not model)
Using Animals dataset from MASS package to build a simple linear regression model
ml2<-lm(log(brain)~log(body),data=Animals)
predict a new given body of 468
pred_body<-data.frame(body=c(468))
predict(ml2,new, interval="confidence")
fit lwr upr
1 5.604506 4.897498 6.311513
But i am not so sure predicted y(brain) =5.6 or log(brain)=5.6?
How could we get the predicted value with the same scale as it original?