My foot is in a boot so we are going to take a look at some childrens' feet:
foot = fetchData("kidsfeet.csv")
## Retrieving from http://www.mosaic-web.org/go/datasets/kidsfeet.csv
mod = mm(width ~ sex, data = foot)
var(fitted(mod))
## [1] 0.04222
var(resid(mod))
## [1] 0.2175
var(resid(mod)) + var(fitted(mod))
## [1] 0.2597
var(width, data = foot)
## [1] 0.2597
We can see that they match.
sd(width, data = foot)
## [1] 0.5096
That gives us the total standard deviation.
sd(resid(mod)) + sd(fitted(mod))
## [1] 0.6718