If you need to scale variables in order to get the correct effect size and beta weight for each variable, does this mean you also scale for both categorical and continuous variables?
For example:
Model1=lm(DV ~ X + Y + Z)
In the above equation, is it correct to scale for x/y/z or would you only scale for x/y (assuming z is the only categorical variable)?
What should this look like in the R program?
For example:
Model1=lm(DV ~ X + Y + Z)
In the above equation, is it correct to scale for x/y/z or would you only scale for x/y (assuming z is the only categorical variable)?
What should this look like in the R program?