Variables: fingerlings (number), credit, equity
If quadratic regression is coded as
where, credit2 is credit*credit
And cubic regression is coded as
where credit3 is credit*credit2
How should i code quadratic and cubic regression with both credit and equity in play.
Thanks.
If quadratic regression is coded as
Code:
regress fingerlings credit credit2
And cubic regression is coded as
Code:
regress fingerlings credit credit2 credit3
How should i code quadratic and cubic regression with both credit and equity in play.
Thanks.
Comment