Outputting mxModel
Posted on

Is there a function to output an mxModel to a file? I was running a simulation, and rather than extracting a few specific elements, I wanted to save the results from each model fit to a file. I tried dput(). While a file was written, I can not retrieve it using dget(). My ideal would be to be able to save the entirety of mxModel for future reference. Ideas?
I think we've successfully
Log in or register to post comments
In reply to I think we've successfully by mspiegel
That's
save(mymodel)
will save the model object in its entirety, including any mxData that had been included in it.
Log in or register to post comments