Error when running the demo script 'ThreeFactorScale2Test.R'

Hi
When running the demo script 'ThreeFactorScale2Test.R' (http://openmx.psyc.virginia.edu/repoview/1/trunk/models/passing) on OpenMx version 1.1.12 I get the following error message:
Error in mxPath(from = latents1, to = indicators1, arrows = 1, connect = "all.pairs", :
unused argument(s) (connect = "all.pairs")
I guess this is the part of the script where the error appears:
threeFactorOrthoRaw1 <- mxModel("threeFactorOrthogonal",
type="RAM",
manifestVars=indicators,
latentVars=latents,
mxPath(from=latents1, to=indicators1,
arrows=1, all=TRUE,
arrows=1, connect="all.pairs",
free=TRUE, values=.2,
labels=loadingLabels1),
From earlier discussion threads I guess this has something to do with the 'all.pairs' and all=TRUE statements, but could someone please help me find the correct way to script this?
script is fine: Just update openmx
Hi Trini,
the script is fine, you just need to update OpenMx
just execute this in your R console (gets the hot-off-press version, but that's running faster too...)
install.packages('OpenMx', repos='http://openmx.psyc.virginia.edu/testing/')
Log in or register to post comments
In reply to script is fine: Just update openmx by tbates
Problems solved!
Thanks, Tim ,that solved the problem!
Log in or register to post comments
Also, pulling scripts from
Also, pulling scripts from the directory (
http://openmx.psyc.virginia.edu/repoview/1/tags/stable-1.1/models/passingI mean http://openmx.psyc.virginia.edu/svn/tags/stable-1.1/models/passing) will work when running the OpenMx 1.1 release.Log in or register to post comments