New Feature Proposals

OpenMx 1.0 feature set
Developers: remind ourselves of the feature set promised in the grant. High probability these features will have greatest priority.
- Read more about OpenMx 1.0 feature set
- 2 comments
- Log in or register to post comments

Crosstab or weighted response vector data?
Any chance we could get crosstab or weighted response vector data types ?
these are very useful for obtaining starting values for larger FIML ordinal analyses
thanks
Sarah
(by weighted response vector data I mean data that looks something like this
v1 v2 v3 v4 v5 v6 freq
0 0 0 0 0 0 100
0 0 0 0 0 1 100
...
)
- Read more about Crosstab or weighted response vector data?
- Log in or register to post comments

Conseptual work arround for CIs on estimated parameters - untested
I think you can constrain the calculated matrix to be equal to a free matrix and the obtain CIs on the free matrix. for example:
mxMatrix( type="Full", nrow=nvar, ncol=nf, free=TRUE, values=.3, name="factor" ),
mxMatrix( type="Diag", nrow=nvar, ncol=nvar, free=TRUE, values=.3, name="residual" ),
mxMatrix( type="Stand", nrow=nvar, ncol=nvar, free=TRUE, name="Vconstraint" ),
mxAlgebra( expression=((factor %*% t(factor))+(residual%*% t(residual))), name="expCov" ),

Improving ordinal model specification
1. Allow neighboring duplicate values to exist within a column of the thresholds matrix. CURRENT: a column must consist of strictly increasing values. CHANGE: a column must consist of non-decreasing values. Internally, neighboring duplicate values are collapsed into a single threshold.
- Read more about Improving ordinal model specification
- 8 comments
- Log in or register to post comments

ranges and subranges implemented in MxAlgebra expressions
foo <- mxAlgebra(bar[1:2, 3:4], name = 'foo')
foo <- mxAlgebra(bar[1:2, 1], name = 'foo')
foo <- mxAlgebra(bar[1:2, ], name = 'foo')
foo <- mxAlgebra(bar[cbind(1,3,5), ], name = 'foo') # select odd rows

foo[x,y] for MxMatrix objects
Some notes about foo[x,y]
- returns a MxMatrix object
- applies [x,y] extraction to the components of foo (values, labels, free, lbound, ubound)
- returns a MxMatrix of the same type as foo, unless that would cause an error. In cases of errors, return a Full matrix.
- Read more about foo[x,y] for MxMatrix objects
- Log in or register to post comments

MxRowObjective objective function
mxRowObjective(rowAlgebra, rowResults = NA, reduceAlgebra = NA, name = NA).
- Read more about MxRowObjective objective function
- 7 comments
- Log in or register to post comments
Pagination
- Previous page
- Page 3