In my statistics lectures it is mentioned that for balanced data (same number of participants in each block), the results will be the same whether the model is fitted with factor A as a fixed effect or a random effect. For example:
lme(effort ~ Type, random = ~1|Subject)
will give me the same answer as
lm(effort~ Type + Subject)
By contrast, it is mentioned that with unbalanced data, the results will not be the same.
What is meant by 'same answer'. If I run both models I get two different outputs. What is the same?