Hi Rene,
The M matrix allows you to test hypotheses between the different response parameters, which are shown in the default MANOVA report in JMP.
To relate to the example you posed (i.e., items from a survey), I'm using below the sample data table "Online Consumer Data.jmp" to run a relatively simple MANOVA model. Here, our outcomes are 3 items representing responses on a survey about the perceived reputation of an online website, and we just want to test the effect of the "Female" variable. Feel free to run this JSL script to follow along:
dt = Open("$SAMPLE_DATA\Online Consumer Data.jmp");
dt << Fit Model(
Y( :Reput_1, :Reput_2, :Reput_3 ),
Effects( :Female ),
Personality( "Manova" ),
Run
);
The default report shows the matrix of Parameter Estimates of the model:
You can now use the "Choose Response" dropdown to start testing hypotheses between these response parameters. When M is the identity matrix, we're simply leaving the response columns of this Parameter Estimates' matrix unchanged and we're asking "is there an effect of Female overall in this multivariate system?" The answer is yes:
Notice that opening the "M-transformed Parameter Estimates" outline box will show you the unchanged Parameter Estimates (technically, the M matrix postmultiplies the Parm Est matrix, so that's how you get the transformed estimates). For additional interpretation, we'd say "yes, there's a significant difference between males and females in our responses" and looking over the estimates and/or the Least Squares Means plots can help interpret those results a bit more. But sometimes this isn't enough detail, such that someone might want to know if Female has an effect in a particular combination of the columns in the Parm Est matrix. Let's say we want to know if there's an effect in the sum across all our responses. For this, we select "Sum" under the "Choose Response" dropdown, and we can see the answer again is yes, there's a significant effect:
The interpretation here is much easier because Female has 2 levels and the "Sum" option resulted in reducing our Parm Est matrix into just a vector. So we can say "there's a significant difference between males and females when looking at the sum of perceived reputation on our 3 items. The negative Female[0] estimate indicates that males have a lower sum across these responses."
Using other choices of M for these data might not make any sense... for example, the "Profile" option is likely most useful for outcomes that represent repeated measures. If you hover over the "Profile" option, you'll find this description
which in our example, suggests that we're going to ask whether there's an effect of "Female" in the difference between item 1 and 2 and between item 2 and 3. I don't think this makes as much sense for these data, but if the data were repeated measures, this option would test time-to-time differences "are there differences across males and females from one occasion to the next?"
As you know, there are other options for M in the output... by looking at the matrix and the transformed Parm Est, you'll be able to see what hypothesis is being tested.
Lastly, I'll add that the DF of a test unveils the level of "detail" you're getting from the test. Using the "Sum" option, we were able to be very specific about our interpretation, and that's no surprise because the DF = 1. The "Identity" option gave us a 3 DF test, which means we know there are differences but those differences are "somewhere" in our responses.
HTH,
~Laura C-S
Laura C-S