Scaling predictors is necessary if (1) you need to have predictors on comparable scales, as with principal-component analysis or penalized methods like ridge regression or LASSO or (2) you will run into numerical problems as can occur with exponentiated predictor values in survival analysis. You don't seem to be in either situation.
You can lower the magnitudes of regression coefficients if you rescale a continuous predictor. For example, if you express a city population as a predictor in terms of millions of inhabitants then the magnitude of its regression coefficient will be $10^{-6}$ of what it would be if you used an unscaled population. But so long as you are consistent the ultimate results will be the same either way.
If you also center such a predictor that's involved in an interaction, be careful in interpreting your results as that will change the intercept and the apparent "main effects" of the predictors with which it interacts. Those are typically evaluated for situations when all predictors are at 0 or reference levels, so centering a predictor can change those other coefficients. Again, the ultimate results are the same provided that you are consistent.
There is no one-size-fits-all way to normalize categorical predictors. As you aren't using penalization you don't need to consider that for this application.
response ~ x1 * x2 + (1 | time)as formula? Note that*does not denote the usual multiplication but relates to the Wilkinson-Rogers notations. For a factor, scaling is meaningless. – Yves Apr 19 '21 at 12:18Some predictor variables are on very different scales: consider rescaling, or for count models in glmmTMB,Model convergence problem: eigenvalue problems. So the first option is to scale, but not the factor variable, of course. – MKie45 Apr 19 '21 at 14:06x1 * x2is the same asx1 + x2 + x1:x2where the 3-rd term is the interaction. Yes, it can be useful to scale the continuous variables, but you do not have to scale manuallly the interactions which are automatically coped with when building the design matrices. – Yves Apr 19 '21 at 15:35scale(x1)+x2+x1:x2, instead ofscale(x1)+x2+scale(x1):x2? Or am I misunderstanding you? – MKie45 Apr 20 '21 at 12:43df2 <- within(df1, x1 <- scale(x1))then use the formula with no scale but the modified data frame. By chosing a round value for the scale as 10, 100, or 0.1, 0.01 the intepretation will remain simple. You can usex1 * x2as the r.h.s. of the formula: this is the same thing asx1 + x2 + x1:x2. – Yves Apr 20 '21 at 13:17