| GERAS {psychTools} | R Documentation |
Gruber et al. (2020) report on the psychometric properties of a multifaceted Gender Related Attributes Survey. Here are the data from their 3 domains (Personality, Cognition and Activities and Interests from their study 2. Eagly and Revelle (2022) include these data in their review of the power of aggregation. The data are included here as demonstrations of the cohen.d and scatterHist functions in the psych package and may be used to show the power of aggregation.
data("GERAS")
#These other objects are included in the file
# data("GERAS.scales")
# data("GERAS.dictionary")
# data("GERAS.items")
# data("GERAS.keys")
A data frame with 471 observations on the following 51 variables (selected from the original 93) The code numbers are item numbers from the bigger set.
V15reckless
V22willing to take risks
V11courageous
V6a adventurous
V19dominant
V14controlling
V20boastful
V21rational
V23analytical
V9pragmatic
V44to find an address for the first time
V45to find a way again
V46to understand equations
V50to follow directions
V51to understand equations
V53day-to-day calculations
V48to write a computer program
V69paintball
V73driving go-cart
V71drinking beer
V68watching action movies
V75playing cards (poker)
V72watching sports on TV
V67doing certain sports (e.g. soccer, ...)
V74Gym (weightlifting)
V27warm-hearted
V28loving
V29caring
V26compassionate
V32delicate
V30tender
V24familiy-oriented
V40anxious
V39thin-skinned
V41careful
V55to explain foreign words
V58to find the right words to express certain content
V59synonyms for a word in order to avoid repetitions
V60to phrase a text
V54remembering events from your own life
V63to notice small changes
V57to remember names and faces
V89shopping
V92gossiping
V81watching a romantic movie
V80talking on the phone with a friend
V90yoga
V83rhythmic gymnastics
V84going for a walk
V86dancing
gendergender (M=1 F=2)
These 50 items (+ gender) may be formed into scales using the GERAS.keys The first 10 items are Male Personality, the next 10 are Female Personality, then 7 and 7 M and F Cognition, then 8 and 8 M and F Activity items. The Pers, Cog and Act scales are formed from the M-F scales for the three domains. M and F are the composites of the Male and then the Female scales. MF.all is the composite of the M - F scales. See the GERAS.keys object for scoring directions.
"M.pers" "F.pers" "M.cog" "F.cog" "M.act" "F.act" "Pers" "Cog" "Act" "M" "F" "MF.all" "gender"
See the Athenstaedt data set for a related data set.
Study 2 data downloaded from the Open Science Framework https://osf.io/42jhr/ Used by kind permission of Freya M. Gruber, Tullia Ortner, and Belinda A. Pletzer.
Alice H. Eagly and William Revelle (2022), Understanding the Magnitude of Psychological Differences Between Women and Men Requires Seeing the Forest and the Tree. Perspectives in Psychological Science doi:10.1177/17456916211046006
Gruber, Freya M. and Distlberger, Eva and Scherndl, Thomas and Ortner, Tuulia M. and Pletzer, Belinda (2020) Psychometric properties of the multifaceted Gender-Related Attributes Survey (GERAS) European Journal of Psychological Assessment, 36, (4) 612-623.
data(GERAS)
GERAS.keys #show the keys
#show the items from the dictionary
psych::lookupFromKeys(GERAS.keys, GERAS.dictionary[,4,drop=FALSE])
#now, use the GERAS.scales to show a scatterHist plot showing univariate d and bivariate
# Mahalanobis D.
psych::scatterHist(F ~ M + gender, data=GERAS.scales, cex.point=.3,smooth=FALSE,
xlab="Masculine Scale",ylab="Feminine Scale",correl=FALSE,
d.arrow=TRUE,col=c("red","blue"), bg=c("red","blue"), lwd=4,
title="Combined M and F scales",cex.cor=2,cex.arrow=1.25, cex.main=2)