I have found how people do linear regressions on Python using sklearn and doing reg.fit()
with their data, but this only lets you do it if you're looking for a regression like
y = Ax1 + Bx2 +Cx3
etc
But what if I had categorical data that had some sort of interactions such that I wanted the variables multiplied instead of added?
something like y = (Ax1)*(Bx2)*(Cx3)