Hello all,

I'm finishing up my bachelor's thesis but I'm running into one last issue. I do not understand how to properly note down my regression in a form that is accepteble for my thesis. With this I mean transforming my stata code into a regression. An example of someone elses regression: 𝑀𝐷𝑅𝑖,𝑑 = π‘Ž1 + π‘Ž2𝐴𝑠𝑠𝑒𝑑𝑠𝑖,π‘‘βˆ’1 + π‘Ž3𝐸𝐡𝐼𝑇𝑖,π‘‘βˆ’1 + π‘Ž4𝑃𝑃𝐸𝑖,π‘‘βˆ’1 + π‘Ž5π·π‘’π‘π‘Ÿπ‘–,π‘‘βˆ’1 + π‘Ž6𝑀/𝐡𝑖,π‘‘βˆ’1 + π‘Ž7𝑅&𝐷𝑖,π‘‘βˆ’1 + π·π‘’π‘šπ‘šπ‘–π‘’π‘  + πœ€π‘–,𝑑

My dependent variable is MDR with independent variable being a regression dummy. I've vectored my control variables under $control, with the control variables being size, profitability, growth opportunities, asset tangibility, investment.

I've run 2 different regressions so I'm assuming I will also need 2 different models. My data set is a panel data set using the fixed effects model. One is correcting for heteroskedasticity and one is not. They are as follows:
Code:
 xtreg MDR i.recession $control , fe
Code:
 xtreg MDR i.recession $control , fe vce(robust)
I'm pretty lost here and I can't seem to find a good guide to explain it to me, which is why I resorted here.
Any advice is welcome and appreciated.

Thanks in advance,
Jesse