load_models() opens a dialog box to choose your model file, and then offers a line of code to do the same without the dialog box, but the code doesn't have quotes around the path.
E.g.
> load_models()
Loading models. You could automate this with `load_models(/Users/michael.levy/Dropbox/Teaching/HAS18/HAS18_ML_Course/models.RDS)`
Should be
> load_models()
Loading models. You could automate this with `load_models("/Users/michael.levy/Dropbox/Teaching/HAS18/HAS18_ML_Course/models.RDS")`
load_models()
opens a dialog box to choose your model file, and then offers a line of code to do the same without the dialog box, but the code doesn't have quotes around the path.E.g.
Should be