I implemented regression model with interactions using Julia GLM package:
Reg = lm(@formula(dep_var ~ var1&var2&var3), data, true).
Fitting this formula requires a lot of RAM (> 80 GB), but I noticed that the calculations are performed on one core, although my OS (x86_64-pc-linux-gnu) has 8 cpu cores.
Is it possible to implement linear regression using multiprocessing/parallelism approaches?
I suppose, it could also improve the model runtime.