Aggregation Indices in R
Aggregation Indices in R
Aggregation Indices in R
es
Aggregation Indices in R
There are various copies (mirrors) of the CRAN across the globe. This link will navigate you to
a page of links to the various “mirror” sites. Scroll down this list to find a mirror near to you.
For example, the mirror closest to me will be one of the links in Spain.
Then, select the platform you use (Linux, MacOs or Windows). I have selected Windows.
Once the program has been installed, you will find the corresponding icon at the Desktop.
Click on the icon of the program and you will open the R Console.
[email protected]
As previously indicated, there are various copies (mirrors) of the CRAN across the globe.
Again, you will have access to a window of links to the various “mirror” sites. Scroll down this
list to find a mirror near to you. For example, the mirror closest to me will be the one in Madrid
(Spain).
THE INSTALATION PROCEDURE SHOULD BE CARRIED OUT JUST THE FIRST TIME.
ONCE YOU HAVE THE PROGRAMME AND THE PACKAGES INSTALLED IN YOUR
COMPUTER, YOU JUST WILL NEED TO GO DIRECTLY TO “HOW TO OBTAIN
AGGREGATION INDICES IN R” SECTION.
If during the following process you get a message telling to install any other packages that are
needed, just select the option to install the packages from the CRAN:
[email protected]
Copy and paste the following instructions in the R Console. Those instructions are for calling
back the packages that we are going to be needed to run the analyses (they were previously
installed; now they are called back to be used):
We can copy and paste the direction of the directory from the corresponding window. The only
problem is that the “\” lines must be changed for “/”.
We can Visualize the dataset to check that the data have been properly imported:
In this example, we are going to obtain aggregation indices for the Support scale. Then, in the
dataset we have:
Those are the instructions to estimate the ADI for the Support scale in my example (you will
have noticed, that the lines starting with “#” are just notes that we introduce to keep
information that can be useful for us):
#Estimating ADI
AD.SUPPORT.MEAN <- ad.m(Example[,6:8],Example$unidad);
You have to modify the instructions to adapt them to your dataset, and names of your variables.
As we can check in the dataset, the items of the Support scale are placed in columns 6 to 8.
[email protected]
When copying and pasting the instructions in the R Commander window, and executing them:
To interpret the ADI values, Burke and Dunlap (2002) recommend using the criterion of AD <
c/6, where c is the number of response alternatives. For a Likert-type 5-point scale, as the one
used in the Support scale, c/6 (5/6) is equal to 0.83. Consequently, we could conclude that there
is within-team agreement if the ADI value is equal to or less than 0.83. Thus, we can conclude
that the average level of within-team agreement is sufficient to aggregate individual scores to
the team level.
[email protected]
Those are the instructions to run an ANOVA for the Support mean value in my example:
When copying and pasting the instructions in the R Commander window, and executing them:
The F value was statistically significant (F (196, 442) = 2.25, p < .01), indicating that there was
adequate between-team discrimination of team support.
[email protected]
#estimate ICC(1)
ICC1(AnovaSupport)
#estimate ICC(2)
ICC2(AnovaSupport)
You have to modify the instructions to adapt them to your variable names. See that the name
that we use is the same that we created for calling the Anova in the previous section.
When copying and pasting the instructions in the R Commander window, and executing them:
The values for ICC[1] and ICC[2] are .28 and .56, respectively, indicating that the level of
consistency of responses among team members and the reliability of the teams’ means on this
scale are adequate