I want to use a power function on the classic surface area to volume relationship.
surfaceArea<-c(6,24,54)
volume<-c(1,8,27)
Logging the data works to get the parameter values of the linear function as follows
logSurfaceArea<-log10(surfaceArea)
logVolume<-log10(volume)
plot(logSurfaceArea~logVolume, pch =16)
allometryModel <-lm(logSurfaceArea~logVolume)
summary(allometryModel)
But how do I get the parameter values for the original power function?