You are here

The OpenMx website will be down for maintenance from 9 AM EDT on Tuesday, September 17th, and is expected to return by the end of the day on Wednesday, September 18th. During this period, the backend will be updated and the website will get a refreshed look.

How do I distinguish paths by group in multiple group models?

1 post / 0 new
tbates's picture
Offline
Joined: 07/31/2009 - 14:25
How do I distinguish paths by group in multiple group models?

By default, umxRAM labels paths using s simple "A_to_B" style.
To distinguish what group a path is in, simply add suffix = to the uxmRAM call. This will add the suffix string to each path. (for one-off differences, just add the label manually inside umxPath).

so

m1 = umxRAM("firstGroup", data=data, suffix = "_group1",
    umxPath(v.m. = c("A", "B")),
    umxPath('A', with = 'B')
)

Would contain paths like "A_with_B_group1"