Skip to content

Commit e8bfd9b

Browse files
committed
add grids from some papers extracted with claude
1 parent cae6795 commit e8bfd9b

File tree

7 files changed

+292
-0
lines changed

7 files changed

+292
-0
lines changed

dev/grids/baxter2014.R

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# CITATION: Baxter, D. I., Goffin, K., & Szwejczewski, M. (2014). The repertory grid technique
2+
# as a customer insight method. Research-Technology Management, 57(4), 35-42.
3+
# DOI: 10.5437/08956308X5704229
4+
#
5+
# CONTEXT: This grid was elicited from a clinician working in intensive care as part of
6+
# a new product development study to uncover customers' hidden needs regarding medical
7+
# monitoring devices. The six elements (A-F) are anonymized patient monitoring devices
8+
# rated on a 1 (emergent pole) to 5 (contrast pole) scale across six constructs.
9+
10+
args <- list(
11+
name = c("A", "B", "C", "D", "E", "F"),
12+
l.name = c("Easy to use",
13+
"Clear display",
14+
"Quick set-up (while with patient)",
15+
"Many parameters",
16+
"Easy staff training",
17+
"Easy to clean"),
18+
r.name = c("Difficult",
19+
"Poor display",
20+
"Slow set-up",
21+
"Few parameters",
22+
"Hard staff training",
23+
"Hard to clean"),
24+
scores = c(1, 3, 3, 4, 2, 1,
25+
1, 4, 5, 3, 4, 4,
26+
2, 5, 3, 1, 1, 1,
27+
4, 2, 1, 2, 1, 1,
28+
3, 3, 5, 4, 5, 5,
29+
5, 5, 5, 4, 5, 5)
30+
)
31+
grid <- makeRepgrid(args)
32+
grid <- setScale(grid, 1, 5)

dev/grids/bell2006.R

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# CITATION: Bell, R. C. (2006). A note on the correlation of elements in repertory grids:
2+
# How to and why. Journal of Constructivist Psychology, 19(3), 273-279.
3+
# DOI: 10.1080/10720530600523595
4+
#
5+
# CONTEXT: This illustrative grid (Figure 2) was constructed to demonstrate statistical
6+
# methods for correlating elements in repertory grids, showing two participants (A and B)
7+
# each with a self and ideal-self element rated on six bipolar constructs using a 1-7 scale.
8+
9+
args <- list(
10+
name = c("A-self", "A-ideal", "B-self", "B-ideal"),
11+
l.name = c("Soft", "Warm", "Weak", "Bold", "Headstrong", "Fast"),
12+
r.name = c("Hard", "Cool", "Strong", "Timid", "Cautious", "Slow"),
13+
scores = c(1, 5, 3, 7,
14+
1, 3, 1, 5,
15+
3, 5, 2, 6,
16+
2, 2, 7, 3,
17+
1, 7, 6, 2,
18+
1, 7, 5, 1)
19+
)
20+
grid <- makeRepgrid(args)
21+
grid <- setScale(grid, 1, 7)

dev/grids/bell2010.R

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# CITATION: Bell, R. C. (2010). A note on aligning constructs. Personal Construct Theory
2+
# & Practice, 7, 42-48. Grid data originally from: Haritos, A., Gindidis, A., Doan, C.,
3+
# & Bell, R. C. (2004). The effect of element role titles on construct dimensionality.
4+
# Journal of Constructivist Psychology, 17, 109-124.
5+
#
6+
# CONTEXT: This grid (Figure 3 in Bell, 2010) was used to illustrate construct alignment
7+
# methods; it comprises ratings by one participant on 10 role-based elements (self, friend,
8+
# mother, teachers, etc.) across 9 bipolar constructs on a 1-7 scale.
9+
10+
args <- list(
11+
name = c("self",
12+
"closest friend same sex",
13+
"unhappiest person you know",
14+
"opp. sex - don't get along",
15+
"opp. sex - like more than dislike",
16+
"mother",
17+
"teacher you respected",
18+
"person you work well with",
19+
"teacher you did not respect",
20+
"most confident person you know"),
21+
l.name = c("relaxed",
22+
"not so smart (academically)",
23+
"dislikes sport",
24+
"not interactive",
25+
"not transparent",
26+
"insensitive",
27+
"fearful & timid",
28+
"rough",
29+
"accept as it is"),
30+
r.name = c("worried & tense",
31+
"smart (academically)",
32+
"loves sports",
33+
"loves people",
34+
"transparent",
35+
"sensitive",
36+
"fearless",
37+
"gentle",
38+
"loves to argue"),
39+
scores = c(4, 4, 6, 5, 3, 6, 5, 2, 2, 6,
40+
6, 3, 7, 6, 4, 6, 7, 4, 7, 3,
41+
6, 7, 6, 4, 4, 2, 6, 5, 6, 3,
42+
6, 7, 5, 6, 6, 5, 6, 7, 7, 4,
43+
6, 4, 5, 7, 3, 7, 6, 5, 3, 3,
44+
4, 6, 3, 4, 6, 5, 3, 2, 4, 5,
45+
5, 4, 4, 3, 5, 3, 5, 6, 3, 5,
46+
5, 6, 6, 4, 5, 7, 7, 3, 5, 6,
47+
5, 5, 6, 7, 4, 4, 6, 7, 5, 5)
48+
)
49+
grid <- makeRepgrid(args)
50+
grid <- setScale(grid, 1, 7)

dev/grids/bringmann1990.R

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# CITATION: Bringmann, M. W. (1990). Computer-based methods for the analysis and
2+
# interpretation of personal construct systems. In G. Neimeyer & R. Neimeyer (Eds.),
3+
# Advances in Personal Construct Psychology (Vol. 1, pp. 57-90). JAI Press.
4+
# Grid data originally from Bell (1987) G-PACK program example.
5+
#
6+
# CONTEXT: This example grid labelled "Friends and Others" was used to illustrate
7+
# computer-based grid analysis methods; six anonymized persons (S1-S6) are rated
8+
# on eight bipolar constructs on a 1-7 scale.
9+
10+
args <- list(
11+
name = c("S1", "S2", "S3", "S4", "S5", "S6"),
12+
l.name = c("Willingness to listen",
13+
"Professional outlook",
14+
"Stubborn minded",
15+
"Ability to twist facts",
16+
"Willpower",
17+
"Friendly",
18+
"Unhealthy lifestyle",
19+
"Competitive"),
20+
r.name = c("Unwilling to listen",
21+
"Slapdash approach",
22+
"Relaxed attitude",
23+
"Honest",
24+
"Commitment difficulty",
25+
"Cold to others",
26+
"Conscious of health",
27+
"Not competitive"),
28+
scores = c(7, 6, 3, 4, 6, 6,
29+
6, 6, 3, 4, 5, 6,
30+
6, 6, 6, 3, 4, 4,
31+
3, 2, 5, 6, 2, 2,
32+
3, 6, 2, 5, 5, 5,
33+
5, 4, 4, 5, 5, 5,
34+
2, 4, 4, 2, 5, 2,
35+
6, 5, 3, 6, 5, 6)
36+
)
37+
grid <- makeRepgrid(args)
38+
grid <- setScale(grid, 1, 7)

dev/grids/caputi2008.R

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
# CITATION: Caputi, P., & Hennessy, D. (2008). Using formal concept analysis to analyse
2+
# repertory grid data. In F. Fransella (Ed.), International Handbook of Personal Construct
3+
# Psychology (2nd ed., pp. 162-172). Wiley.
4+
#
5+
# CONTEXT: This grid was elicited from a 57-year-old man with approximately ten tattoos
6+
# as part of a study demonstrating formal concept analysis applied to repertory grid data;
7+
# twelve elements related to self and others (tattooed/non-tattooed, conforming/non-conforming)
8+
# were rated on twelve bipolar constructs using a 1-5 scale.
9+
10+
args <- list(
11+
name = c("Self",
12+
"Ideal self",
13+
"Future self",
14+
"Self as I'd like others to see me",
15+
"Self as seen by others",
16+
"Self before I had a tattoo",
17+
"Self now no tattoo",
18+
"Someone without a tattoo",
19+
"Someone with a tattoo",
20+
"Someone who conforms",
21+
"Someone who pushes boundaries",
22+
"Someone I don't like the look of"),
23+
l.name = c("Happy",
24+
"Patient",
25+
"Caring",
26+
"Kind",
27+
"Sense of humour",
28+
"Sociable",
29+
"Friendly",
30+
"Active",
31+
"Confident",
32+
"Organised",
33+
"Hard working",
34+
"Honest"),
35+
r.name = c("Miserable",
36+
"Noxious",
37+
"Neutral",
38+
"Callous",
39+
"Dour",
40+
"Hermit-like",
41+
"Aloof",
42+
"Dead beats",
43+
"Weak",
44+
"Shambles",
45+
"Lazy",
46+
"Slimy"),
47+
scores = c(2, 2, 2, 2, 2, 1, 3, 2, 1, 5, 1, 5,
48+
2, 1, 2, 2, 2, 3, 2, 3, 4, 5, 2, 5,
49+
5, 2, 3, 1, 2, 5, 1, 1, 2, 5, 1, 4,
50+
2, 2, 2, 1, 2, 2, 2, 1, 2, 5, 2, 3,
51+
1, 1, 1, 1, 1, 3, 2, 2, 2, 5, 2, 5,
52+
5, 3, 5, 5, 5, 4, 5, 1, 1, 2, 1, 4,
53+
2, 2, 2, 2, 5, 2, 2, 2, 1, 4, 2, 4,
54+
1, 1, 2, 1, 1, 1, 1, 1, 2, 1, 1, 4,
55+
1, 1, 1, 1, 1, 4, 2, 2, 2, 3, 1, 5,
56+
1, 1, 1, 2, 3, 3, 2, 5, 4, 2, 1, 4,
57+
2, 2, 3, 1, 2, 2, 2, 1, 2, 1, 1, 4,
58+
1, 1, 1, 2, 1, 1, 1, 1, 1, 2, 2, 4)
59+
)
60+
grid <- makeRepgrid(args)
61+
grid <- setScale(grid, 1, 5)

dev/grids/faccio2012.R

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
# CITATION: Faccio, E., Castiglioni, M., & Bell, R. C. (2012). Extracting information from
2+
# repertory grid data: New perspectives on clinical and assessment practice.
3+
# Journal of Constructivist Psychology, 25(1), 63-86.
4+
# DOI: 10.1080/10720537.2012.629508
5+
#
6+
# CONTEXT: This grid was elicited from "Elisabetta," a 17-year-old with an eating disorder,
7+
# to illustrate methods for extracting clinical information from repertory grids; 13 elements
8+
# (self, family members, peers, and self-image figures) were rated on 18 bipolar constructs
9+
# using a -3 to +3 scale (positive = left/emergent pole, negative = right/contrast pole).
10+
11+
args <- list(
12+
name = c("Elisabetta",
13+
"Brother",
14+
"Sister",
15+
"Parents",
16+
"Veronica (disliked)",
17+
"Carlotta (admired)",
18+
"Federica",
19+
"Simone",
20+
"Vanessa",
21+
"Francesca",
22+
"As I would like to be",
23+
"As others see me",
24+
"As others would like me to be"),
25+
l.name = c("spontaneous",
26+
"fragile",
27+
"happy",
28+
"reliable",
29+
"closed",
30+
"obstinate",
31+
"strong",
32+
"obstinate",
33+
"insensitive",
34+
"undecided",
35+
"altruist",
36+
"simple",
37+
"impulsive",
38+
"accommodating",
39+
"anxious",
40+
"proud",
41+
"perfectionist",
42+
"irritable"),
43+
r.name = c("false",
44+
"indifferent",
45+
"problematic",
46+
"thinks about own interests",
47+
"extroverted",
48+
"weak",
49+
"weak",
50+
"hidden",
51+
"kind-hearted",
52+
"decided",
53+
"selfish",
54+
"less hasty",
55+
"prudent",
56+
"ambitious",
57+
"controls situations",
58+
"passes over things",
59+
"hasty",
60+
"calm"),
61+
scores = c( 3, -3, -1, -2, -2, -2, -3, -3, -1, 0, -3, -3, -3,
62+
-2, 1, -1, -1, 0, 2, -2, -1, 1, 0, -1, 0, NA,
63+
-2, -3, -2, 0, 3, -2, -3, -3, -2, -2, -3, -2, -3,
64+
-3, -3, -3, 0, 2, -3, -3, -3, 1, -3, -3, -3, -3,
65+
2, 3, 2, 2, 1, -2, 3, 1, 3, -1, 3, 3, 3,
66+
-3, -3, -3, 0, 3, 1, -2, -1, 3, -3, -3, 0, NA,
67+
-2, -2, -3, 1, -2, -2, -3, 0, -1, 1, -3, -1, -3,
68+
-2, -2, -3, 0, 1, -2, 3, 0, -1, 2, -2, 2, -1,
69+
2, 3, 2, -1, 0, 3, 3, 3, 1, 1, 3, 2, 3,
70+
2, 3, 3, -2, 1, -2, 0, 2, -2, 2, 3, 2, 3,
71+
-2, -2, -2, 0, 2, -3, -2, -3, 1, -1, -3, -2, -3,
72+
-1, -3, -3, 0, -3, 3, 3, 3, -1, -2, -2, -1, -2,
73+
-3, -3, -1, 1, -2, 2, 2, 2, -3, 2, -3, -3, -1,
74+
3, 3, 3, -2, 1, -3, -3, -2, 2, 3, 2, 3, 3,
75+
-2, 2, 2, -3, -2, 0, 2, 2, -1, -1, 2, 1, 2,
76+
-2, -2, -2, 2, -2, 2, 2, 2, -2, -1, -2, 2, -2,
77+
-2, -2, -3, 1, -1, -1, -3, -1, 1, 1, -2, -2, -1,
78+
-3, 1, -3, -2, -1, 3, -1, 3, 0, 1, 0, -3, 1)
79+
)
80+
grid <- makeRepgrid(args)
81+
grid <- setScale(grid, -3, 3)

dev/grids/promt.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
Please read all the papers (one after another from) the following folder:
2+
'/Users/markheckmann/Dropbox/_mh/literatur/Psychologie/PCP/papers a'
3+
4+
Have a look if the paper contains the raw repertory grid data.
5+
If yes, please extract the grid and save it as a grid object in an R file
6+
in the folder dev/grids. Create a new file for each grid and also save
7+
the context, i.e. two sentences of explanation of what the background for that
8+
grid is and from whioch paper it comes (citation).
9+

0 commit comments

Comments
 (0)