I am running a linear regression for Explanatory purposes. Y is continuous and all the explanatory variables are categorical. I understand that the regression coefficient of these variables is the difference in mean of that variable and the mean of the reference for that categorical. My model is as follows:
$Rates = 0.92 + 0.2 \mathrm{Comapny_{STK}} + 0.1 \mathrm{Company_{FLR}} + 0.2\mathrm{Location_{ATL}} - 0.8 \mathrm{Location_{NYC}} + 0.5 \mathrm{Location_{SA}} + \ldots + w_n x_n$
However, is there another method I could use so that the interpretation of the coefficients is similar to that when one runs a linear regression with just continuous explanatory variables, and I could then see the relative effect of each explanatory on $Rates$? I essentially want to see which among $Company$ and $Location$ has the biggest influence on $Rates$. To my understanding, two-way ANOVA's would not be able to answer which of the categoricals has a bigger influence. So I'm not too sure what sort of correlation measure or otherwise to use here.