HealthCatalyst / healthcareai-r

R tools for healthcare machine learning
https://docs.healthcare.ai
Other
245 stars 106 forks source link

load_models path suggestion needs quotes #1252

Closed michaellevy closed 6 years ago

michaellevy commented 6 years ago

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")`