R Functions and User Interface

mxConstraint
a place to discuss mxConstraint
- Read more about mxConstraint
- 17 comments
- Log in or register to post comments

mxRun
A place to discuss mxRun
- Read more about mxRun
- 6 comments
- Log in or register to post comments

Checkpointing Proposal
At the developer meeting today, we discussed adding checkpointing functionality to OpenMx.
This is basically a recovery system in case the computer crashes during an optimization. Essentially, the back-end will write a file to disk every x minutes or every z iterations. The file will contain some representation of the state of optimization at the time it saved. That way if the power fails or the computer crashes, the state of not-too-long-ago is saved somewhere, and the optimizer can pick up where it left off.
- Read more about Checkpointing Proposal
- 7 comments
- Log in or register to post comments

Drop paths at zero using mxMatrix
Hi,
I have attached a bivariate ACE two group twin model script.
I don't seem to be getting the expected behavior when attempting to drop paths using mxMatrix
If i try and fix the cells of the 'e' matrix to zero, I get the error
# ERROR in paste("The job for model", omxQuotes(flatModel@name), "exited abnormally with the error message:", : # cannot coerce type 'char' to vector of type 'character'
- Read more about Drop paths at zero using mxMatrix
- 1 comment
- Log in or register to post comments

MxFIMLObjective
A place to discuss mxFIMLObjective(covariance, means, thresholds = NA)
- Read more about MxFIMLObjective
- 1 comment
- Log in or register to post comments

Computing and Reporting fit statistics
A place to discuss models current and desired og fit, df, AIC, etc and how to make basic functionality happen
- Read more about Computing and Reporting fit statistics
- 17 comments
- Log in or register to post comments

Matrix substitution useful?
How desirable is it that we continue to support matrix and algebra substitution. Matrix substitution will take a 1 x 1 matrix with name 'foo', and then any other matrix with the fixed parameter named 'foo' will get the value stored in the 'foo' matrix. Algebra substitution will take a 1 x 1 matrix with name 'foo', and then any other matrix with the fixed parameter named 'foo' will get the value computed by the 'foo' algebra. This idea is completely orthogonal to constant substitution and free parameter substitution.
- Read more about Matrix substitution useful?
- 28 comments
- Log in or register to post comments

Constant Substitution implemented in repository
As of revision 784, literal constant substitution is implemented in the repository. This only works for literal expressions that evaluate to constants, such as "1" or "1.0" or "8675903". There is a trivial example in models/passing/ConstantSubstitution.R replicated here in its entirety:
require(OpenMx) foo <- mxAlgebra(1 + 2 + 3, 'foo') model <- mxModel('model', foo) modelOut <- mxRun(model) omxCheckEquals(6, mxEval(foo, modelOut))

way to refer to parent?
If you update and change the name of a supermodel, references in submodels now point to the wrong object.
It would be nice if there was a keyword for "parent" or "container", so that instead of this, which needs manual maintenance when the parent name changes.
mxModel("twinACE", mxModel("MZ", mxData(mzfData, type="raw"), mxFIMLObjective("twinACE.expCovMZ", "twinACE.expMeanMZ")),
This would work:
mxModel("twinAE", mxModel("MZ", mxData(mzfData, type="raw"),
- Read more about way to refer to parent?
- 3 comments
- Log in or register to post comments

Errors Returned by R
Several testers here at KU found the errors produced in R rather uninformative. It is clear when something goes wrong, but it seems to be frequently unclear what can be done to correct the problem. The general suggestion was made that having very informative error information, more like the old Mx, would be preferable. I'll leave it open to discussion --- but that was the feedback from several testers in the middle of the country.
- Read more about Errors Returned by R
- 12 comments
- Log in or register to post comments
Pagination
- Previous page
- Page 5
- Next page