Hi Statlisters,

I am estimateing an ordered logit model within my panel data set. Code is

Code:
xtset ID year
xtologit y age x2 x3 x4, vce(cluster z3)
y is a categorical variable going from 1-4.

In order to then interpret the results I do

Code:
margins, at(age=(0(10)100))
But it just keeps calculating and calculating. I suspect that the issue is that age is continuous and not (0,1). Is this in fact the issue? How can I interpret my ordered logit when I have continuous regressors?

Many thanks.