Dear researchers,
This might be a simple question, but I just wanted to confirm.

If the structure of my data is panel and I have used the following code:

Code:
ge id= _n
encode Companyname, gen(COMPANY)
xtset COMPANY Year, yearly
reg Y X1 X2 X3 i.Year, r
by using reg without xt, that means I am using OLS estimation (pooled) with year control.
So, I can say that the structure of my data is panel, but I am running OLS estimation (pooled) with year control. Am, I right?

Many thanks in advance.