File: PairClustering.Rd

package info (click to toggle)
r-cran-psychotools 0.6-0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,112 kB
  • sloc: ansic: 139; sh: 13; makefile: 2
file content (55 lines) | stat: -rw-r--r-- 1,795 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
\name{PairClustering}
\alias{PairClustering}

\title{Pair Clustering Data in Klauer (2006)}

\description{
  Response frequencies of 63 participants who took part in a pair-clustering
  experiment.
}

\usage{data("PairClustering")}

\format{
A data frame containing 126 observations on 8 variables.
\describe{
  \item{ID}{Participant ID.}
  \item{trial}{Trial number, 1 or 2.}
  \item{E1}{Number of pairs recalled adjacently.}
  \item{E2}{Number of pairs recalled non-adjacently.}
  \item{E3}{Number of single pair members recalled.}
  \item{E4}{Number of non-recalled pairs.}
  \item{F1}{Number of recalled singleton words.}
  \item{F2}{Number of non-recalled singleton words.}
}
}

\details{
  Klauer (2006) reports a pair-clustering experiment with 63 participants,
  who were presented with ten pairs of related words and five unrelated
  singleton words. In a later memory test, they freely recalled the presented
  words. This procedure was repeated for two study and test trials. For pairs,
  responses were classified into four categories: both words in a pair are
  recalled adjacently (E1) or non-adjacently (E2), one word in a pair is
  recalled (E3), neither word in a pair is recalled (E4); for singletons, into
  two categories: word recalled (F1), word not recalled (F2).
}

\source{
  Stahl C, Klauer KC (2007).
    HMMTree: A Computer Program for Latent-Class Hierarchical Multinomial Processing Tree Models.
  \emph{Behavior Research Methods}, \bold{39}, 267--273.
}

\references{
  Klauer KC (2006).
    Hierarchical Multinomial Processing Tree Models: A Latent-Class Approach.
    \emph{Psychometrika}, \bold{71}, 1--31.
}

\examples{
data("PairClustering", package = "psychotools")
aggregate(cbind(E1, E2, E3, E4, F1, F2) ~ trial, PairClustering, sum)
}

\keyword{datasets}