Learn R Programming

WordPools (version 1.2.0)

Paivio: Paivio, Yuille & Madigan Word Pool

Description

The Paivio, Yuille & Madigan (1968) word pool contains 925 nouns, together with average ratings of these words on imagery, concreteness and meaningfulness, along with other variables.

Usage

data(Paivio)

Arguments

Format

A data frame with 925 observations on the following 9 variables.

itmno

item number

word

the word

imagery

imagery rating

concreteness

concreteness rating

meaningfulness

meaningfulness rating

frequency

word frequency, from the Kucera-Francis norms

syl

number of syllables

letters

number of letters

freerecall

Free recall proportion, added from Christian et al (1978)

Details

The freerecall variable has 27 NAs.

References

Kucera and Francis, W.N. (1967). Computational Analysis of Present-Day American English. Providence: Brown University Press.

Rubin, D. C. & Friendly, M. (1986). Predicting which words get recalled: Measures of free recall, availability, goodness, emotionality, and pronunciability for 925 nouns. Memory and Cognition, 14, 79-94.

Examples

Run this code
data(Paivio)
summary(Paivio)
plot(Paivio[,c(3:5,9)])

# density plots

plotDensity(Paivio, "imagery")
plotDensity(Paivio, "concreteness")
plotDensity(Paivio, "meaningfulness")
plotDensity(Paivio, "frequency")
plotDensity(Paivio, "syl")
plotDensity(Paivio, "letters")
plotDensity(Paivio, "freerecall")



# find ranges & 5 num summaries
ranges <- as.data.frame(apply(Paivio[,-(1:2)], 2, function(x) range(na.omit(x))))
rownames(ranges) <- c("min", "max")
ranges

P5num <- as.data.frame(apply(Paivio[,3:5], 2, fivenum))
rownames(P5num) <- c("min", "Q1", "med", "Q3", "max")
P5num




Run the code above in your browser using DataLab