I installed R for use with Jupyter notebooks following the instructions here https://conda.io/docs/r-with-conda.html
This allowed me to create new notebooks using R as the language which is working fine.
But it's incredibly slow. I'm running some mixed models with the glmer command from lme4 and they are taking orders of magnitude longer. In rStudio I can calculate the model in 10-15 seconds but it takes over a few minutes in the Jupyter notebook.
Why is this? Is there a more efficient back end I should be pointing the notebook to?
Example of command cited above:
glmer(goalMet ~ relationToReminder * refresher * initial + (1 + scheduledDate | emailAddress), data=tasks, family="binomial", "control=glmer(optimizer="bobyqa"))