Suggestion Box

Cannot upload picture in My account
I could not find any link to the web master. I've tried repeatedly to upload a picture to my account but I get a message about some issue concerning a directory. Sorry I don't remember the exact message. Is it possible to actually upload a jpeg file?
- Read more about Cannot upload picture in My account
- 3 comments
- Log in or register to post comments

inversion in summary
In an example, when estimating means or intercepts
(mxPath(from="one", to=c("beta0v", "beta1v"), free=TRUE, values=c(20,5), labels=c("MB0v", "MB1v"))
the summary statement produces
free parameters:
name matrix row col Estimate Std.Error
...
6 MB0v M 1 beta0v 20.33838913 0.38943505
7 MB1v M 1 beta1v 2.06270791 0.65587636
- Read more about inversion in summary
- 8 comments
- Log in or register to post comments

ML (or bootstrapped) c.i.'s run in parallel
I just thought I'd suggest again the usefulness of a simple user option to obtain c.i.'s using multiple cores (like through snowfall). Could be bootstrapped, could be ML.
I'm routinely it seems running into problems with many parameters. Ideally I'd want c.i.'s on all of them, but computation proceeds too slowly for this to be feasible.
I'm sure you get this often, but OpenMx is fabulous. Longtime R and S users are most grateful.
-Scott
- Read more about ML (or bootstrapped) c.i.'s run in parallel
- 11 comments
- Log in or register to post comments

Open Source Optimizer
It might be nice if OpenMx came with an optional open source optimizer. There are a couple that can deal with nonlinear constraints: solnp (R package Rsolnp), and DONLP2 (R package Rdonlp2).
This is not a high priority and they would probably slow down performance, but maybe some users would prefer to use an open source optimizer.
- Read more about Open Source Optimizer
- 1 comment
- Log in or register to post comments

List of Publications using OpenMx
Dear All,
thanks for all the time and effort put into this project! Just starting and I am already thrilled.
I would like to suggest to start a list of published works that used OpenMx. This might help to establish more confidence in the package over time.
cheers
Gerrit
- Read more about List of Publications using OpenMx
- 5 comments
- Log in or register to post comments

Script library and forum for sharing scripts in Behavioral Genetics
As a novice in the field of OpenMx and R, I am deeply grateful to the OpenMx team for their competent and patient answers to my questions posted in the different forums on the OpenMx web site. However, I must admit, getting answers from the main developers to very newcomers' questions seems a bit like corresponding with Bill Gates when you cannot find the CapsLock key.

hessian warning
congrats on getting the correct gradient and calculated hessian implemented!
suggest a warning to the user when the calculated hessian is not positive definite, something that should be easy to implement because the you invert the hessian to get the standard errors. see attached code which shows that openmx can appear to have converged when the model is unidentified.
also a warning when a gradient element is exactly 0 can help a user diagnose a problem.
greg
- Read more about hessian warning
- Log in or register to post comments

webpage mirror or text only version
Hi
anychance of a mirror in SE Asia somewhere or a text only option of the site for areas with poor internet connection?
thanks
Sarah
- Read more about webpage mirror or text only version
- 1 comment
- Log in or register to post comments

mxPath & MxMatrix
Suggestion: Add an option to mxPath to accept an MxMatrix object.
E.g.,
VApsn <- mxMatrix(name="VApsn", type="Symm", nrow=5, ncol=5, free=TRUE)
hVApsn <- mxAlgebra(.5 %x% VApsn, name="hVApsn")
mxPath(from=AMZ1, to=AMZ2, arrows=2, matrix=VApsn)
mxPath(from=ADZ1, to=ADZ2, arrows=2, matrix=hVApsn)
- Read more about mxPath & MxMatrix
- 12 comments
- Log in or register to post comments

Small bug: mxPath does not check that length(labels)==length(variables)
Hi
I just saw a small inconsistency... don't know if this forum categroy is the right one to report that? If one which one would be more appropriate?
It is just that when using mxPath() if length(labels ) is smaller than number of variables, not all variables will be estimated, while in the graph all will be shown, for example using the seminal example from start page:
mxPath(from=manifests, arrows=2, labels="a"),
Estimation will lead only one manifests (with arrow=2), while graph will show all. Maybe should a check be added to ensure consistency? Thanks!
For complete example:
Pagination
- Previous page
- Page 2
- Next page