-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathanalyze_spec1.jsl
More file actions
517 lines (429 loc) · 17.9 KB
/
analyze_spec1.jsl
File metadata and controls
517 lines (429 loc) · 17.9 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
dt_all = Open(
"/Users/kcarnold/thesis/textrec/data/analyzed/combined_data.csv",
Charset( "utf-8" ),
Import Settings(
End Of Line( CRLF, CR, LF ),
End Of Field( Comma, CSV( 1 ) ),
Strip Quotes( 1 ),
Use Apostrophe as Quotation Mark( 0 ),
Use Regional Settings( 0 ),
Scan Whole File( 0 ),
Treat empty columns as numeric( 0 ),
CompressNumericColumns( 0 ),
CompressCharacterColumns( 0 ),
CompressAllowListCheck( 0 ),
Labels( 1 ),
Column Names Start( 1 ),
Data Starts( 2 ),
Lines To Read( "All" ),
Year Rule( "20xx" )
)
);
// Master data filter
dt = Subset(
dt_all,
Rows( dt_all << get rows where( :participant != "pr5hff" & :participant != "7q253f" & :experiment == "spec2" ))//& :steppedBack == "False" ) )
);
Close( dt_all );
dt << Set Name( "specificity Data" );
// Set data types
Column( dt, "stimulus" ) << Data Type( "Character" ) << Modeling Type( "Nominal" );
// "The last level is the level with the highest value order coding; it is the level whose indicator function is not included in the model." (https://www.jmp.com/support/help/14/indicator-parameterization-estimates.shtml)
Column( dt, "condition" ) << Set Property( "Value Ordering", {"contextual", "standard", "norecs"} );
// Transform columns
quartilify = {/*"NFC", "Extraversion", "Openness", "Trust",*/ "chars_per_sec_norecs_mean"};
For( i = 1, i <= N Items( quartilify ), i++,
/*dt << New Column( quartilify[i] || " Quartile",
Ordinal,
Formula( 1 + Floor( (4 * (Col Rank( Column( quartilify[i] ), <<tie( "average" ) ) - 1)) / N Row() ) )
)*/
dt << New Column( quartilify[i] || " Tertile",
Ordinal,
Formula( 1 + Floor( (3 * (Col Rank( Column( quartilify[i] ), <<tie( "average" ) ) - 1)) / N Row() ) )
)
);
dt << New Column( "taps_per_word", Numeric, Formula( :num_taps / :num_words ) );
dt << New Column( "taps_per_char", Numeric, Formula( :num_taps / :num_chars ) );
dt << New Column( "chars_per_word", Numeric, Formula( :num_chars / :num_words ) );
dt << New Column( "num_words_log", Numeric, Formula( Log( :num_words ) ) );
dt << New Column( "chars_per_sec_log", Numeric, Formula( Log( :characters_per_sec ) ) );
dt << New Column( "chars_per_sec_norecs_log", Numeric, Formula( Log( :chars_per_sec_norecs_mean ) ) );
dt << New Column( "mintaps_standard", Numeric, Formula( :corrected_tapstotype_standard / :num_words ) );
dt << New Column( "mintaps_contextual", Numeric, Formula( :corrected_tapstotype_contextual / :num_words ) );
dt << New Column( "mintaps_gated", Numeric, Formula( :corrected_tapstotype_gated / :num_words ) );
dt << New Column( "mintaps_std_minus_contextual", Numeric, Formula( mintaps_standard - mintaps_contextual ) );
dt << New Column( "bow_std_minus_contextual", Numeric, Formula( corrected_bow_recs_idealuse_standard - corrected_bow_recs_idealuse_contextual) );
dt << New Column( "num_words_not_BOW_recs", Numeric, Formula( :num_words - :corrected_bow_recs_idealuse_standard ) );
dt << New Column( "frac_words_not_BOW_recs", Numeric, Formula( (:num_words - :corrected_bow_recs_idealuse_standard) / :num_words ) );
dt << New Column( "any_ADJ", Numeric, Formula( :ADJ > 0 ) );
Wait( 0 );
blockLevel = dt << Summary(
Group( :experiment, :participant, :block, :condition ),
Mean( :age ),
Mean( :num_chars ),
Mean( :num_words ),
Mean( :relevant_use_frac ),
Mean( :mintaps_standard ),
Mean( :corrected_tapstotype_standard ),
Freq( "None" ),
Weight( "None" ),
statistics column name format( "column" )
);
/*
New Window( "Manipulation Checks",
dt << Matched Pairs(
X( :condition ),
Y( :mintaps_standard, :mintaps_contextual ),
Plot Dif By Row( 1 ),
Reference Frame( 0 ),
Wilcoxon Signed Rank( 1 )
),
dt << Graph Builder(
Variables( X( :condition ), Y( Transform Column( "num_recs_seen/num_taps", Formula( :num_recs_seen / (:num_taps + 1) ) ) ) ),
Elements( Bar( X, Y, Legend( 5 ), Error Bars( "Standard Error" ), Label( "Label by Value" ) ) )
),
dt << Oneway(
Y(
Transform Column(
"orig_bow_recs_idealuse_cond/orig_bow_recs_offered_cond",
Formula( :orig_bow_recs_idealuse_cond / :orig_bow_recs_offered_cond )
)
),
X( :condition ),
Means( 1 ),
t Test( 1 ),
Wilcoxon Test( 1 ),
Mean Diamonds( 1 ),
Where( :experiment == "gc1" )
),
dt << Graph Builder(
Variables(
X( :condition ),
Y(
Transform Column(
"orig_bow_recs_idealuse_cond/orig_bow_recs_offered_cond",
Formula( :orig_bow_recs_idealuse_cond / :orig_bow_recs_offered_cond )
)
)
),
Where( :condition != "norecs" ),
Elements( Bar( X, Y, Legend( 4 ), Error Bars( "Standard Error" ) ) ),
SendToReport( Dispatch( {}, "Y title", TextEditBox, {Set Text( "Relevance rate (# relevant / # offered)" )} ) )
),
);
Wait( 0 );*/
// Main analysis function
// extra_toplevel is stuff like Where(condition != "norecs")
// extra_effects is stuff like ", :chars_per_sec_norecs_log "
analyze = Function( {response_name, window_title, extra_toplevel = "", extra_effects = ""},
{s, resp},
s = "New Window( \!"" || window_title || "\!",
dt << Graph Builder(
Variables( X( :condition ), Y( :" || response_name ||
")),
Elements( Bar( X, Y, Legend( 4 ), Error Bars( \!"Standard Error\!" ), Label( \!"Label by Value\!" ) ) ),
SendToReport(
Dispatch( {}, \!"Y title\!", TextEditBox, {Set Text( \!""
|| window_title ||
"\!")} ) ,
Dispatch( {}, \!"graph title\!", TextEditBox, {Set Text( \!"\!" )} ),
)
),
resp = dt << Fit Model(
Y( :"
|| response_name || " ),
Effects( :condition_order, :condition, :block, :idx_in_block" || extra_effects ||
"),
Random Effects( :participant, :participant * :condition, :stimulus, :stimulus * :condition),
NoBounds( 1 ),
Personality( \!"Standard Least Squares\!" ),
Method( \!"REML\!" ),
Emphasis( \!"Minimal Report\!" ),
Run(
Name( \!""
|| response_name ||
"\!" ) << {Summary of Fit( 1 ), Analysis of Variance( 0 ), Parameter Estimates( 1 ), Lack of Fit( 0 ),
Show Prediction Expression( 1 ), Plot Actual by Predicted( 0 ), Plot Regression( 0 ), Plot Residual by Predicted( 0 ),
Plot Studentized Residuals( 0 ), Plot Residual by Normal Quantiles( 1 ),
Plot Effect Leverage( 0 ), Show All Confidence Intervals( 1 ), {:condition <<
{LSMeans Tukey HSD( 0.05 ), Ordered Differences Report( 1 )}}}
),
SendToReport( Dispatch( \!"Response "
|| response_name || "\!", \!"Effect Details\!", OutlineBox, {Close( 0 )} ) ),
" || extra_toplevel || "
)
)";
Show( s );
Eval( Parse( s ) );
resp;
);
/*** Outcome Effects ***/
// MTPW(standard)
analyze( "mintaps_standard", "Ideal Taps Per Word (Standard, text)" );
// Total taps
analyze( "corrected_tapstotype_standard", "Min-Taps total" );
analyze("corrected_bow_recs_idealuse_standard", "Number of words matching a full-word Standard prediction");
analyze("corrected_bow_recs_idealuse_contextual", "Number of words matching a full-word Contextual prediction");
analyze("bow_std_minus_contextual", "Number of words matching a full-word Standard prediction - contextual");
// Deviations from BOW recs
analyze( "num_words_not_BOW_recs", "Num words typed that weren't BOW recommendations" );
analyze( "frac_words_not_BOW_recs", "Frac words typed that weren't BOW recommendations" );
// By content of recommendations offered (diff between standard and contextual)
//analyze( "mintaps_std_minus_contextual", "MTPW(Standard, text) - MPTW(Contextual, text)" );
/*(dt << Graph Builder(
Variables( X( :condition ), Y( :mintaps_standard ), Y( :mintaps_contextual, Position( 1 ) ) ),
Elements( Bar( X, Y( 1 ), Y( 2 ), Legend( 15 ), Error Bars( "Standard Error" ), Label( "Label by Value" ) ) ),
SendToReport(
Dispatch( {}, "400", ScaleBox, {Legend Model( 15, Level Name( 0, "standard" ), Level Name( 1, "contextual" ) )} ),
Dispatch( {}, "graph title", TextEditBox, {Set Text( "" )} ),
Dispatch( {}, "X title", TextEditBox, {Set Text( "Writing Condition" )} ),
Dispatch( {}, "Y title", TextEditBox, {Set Text( "min taps (system, text)" )} ),
Dispatch( {}, "400", LegendBox, {Set Title( "System" )} )
)
)) << set window title( "conformity - with gating" );*/
// Effect on text length in words
analyze( "num_words", "num_words" );
/*analyze( "num_words_log", "Log(num_words)" );*/
analyze( "mean_log_freq", "Zipf frequency" );
// MTPW with age
//analyze( "mintaps_standard", "MTPW with age", "", ", :age, :age * :condition");
analyze( "ADJ", "Fraction of words that are adjectives" );
analyze( "any_ADJ", "Any adjectives used?" );
analyze( "total_rarity", "Total rarity" );
// Participants left fewer errors uncorrected in recs conditions
// (For the paper, I did this analysis manually, since uncorrected errors is a rare event so ANOVA assumptions fail badly.
// analyze( "uncorrected_errors_per_char", "Uncorrected Errors per Character" );
/*** Process Effects ***/
// Main effect of condition on text entry speed
// TODO: with more data, we DO see a main effect of condition on speed!
/*analyze( "chars_per_sec_log", "Characters per Second" );
// Interaction effect:
// Graph (log transformed)
(dt << Graph Builder(
Legend Position( "Inside Left" ),
Variables(
X( :condition ),
Y( Transform Column( "chars_per_sec_log-chars_per_sec_norecs_log", Formula( :chars_per_sec_log - :chars_per_sec_norecs_log ) ) ),
Overlay( :chars_per_sec_norecs_mean Tertile )
),
Elements( Bar( X, Y, Legend( 17 ), Error Bars( "Standard Error" ) ) ),
Where( :condition != "norecs" ),
SendToReport(
Dispatch(
{},
"400",
ScaleBox,
{Legend Model( 10, Level Name( 0, "Slowest Tertile" ), Level Name( 1, "Middle Tertile" ), Level Name( 2, "Fastest Tertile" ) )}
),
Dispatch( {}, "400", LegendBox, {Set Title( "Baseline Speed" )} ),
)
)) << set window tytle( "speed ratio to norecs log" );
(dt << Graph Builder(
Variables(
X( :chars_per_sec_norecs_mean ),
Y( Transform Column( "chars_per_sec_log-chars_per_sec_norecs_log", Formula( :chars_per_sec_log - :chars_per_sec_norecs_log ) ) ),
Overlay( :condition )
),
Elements( Points( X, Y, Legend( 18 ) ), Line Of Fit( X, Y, Legend( 19 ) ) ),
Where( :condition != "norecs" ),
SendToReport(
Dispatch( {}, "chars_per_sec_log-chars_per_sec_norecs_log", ScaleBox, {Add Ref Line( 0, "Solid", "Black", "", 1 )} ),
Dispatch( {}, "X title", TextEditBox, {Set Text( "Baseline speed (chars per sec)" )} ),
Dispatch( {}, "Y title", TextEditBox, {Set Text( "Log ratio of speed to baseline speed" )} )
)
)) << set window title( "Speed ratio to norecs log continuous x" );
analyze( "chars_per_sec_log", "Characters per Second with baseline", "", ", :chars_per_sec_norecs_log, :chars_per_sec_norecs_log*:condition " );
//analyze( "chars_per_sec_log", "Characters per Second with age", "", ", :age, :age*:condition " );
//analyze( "chars_per_sec_log", "Characters per Second with age and baseline", "", ", :age, :age*:condition, :chars_per_sec_norecs_log, :chars_per_sec_norecs_log*:condition " );
//analyze( "taps_per_char", "Taps per Char" );
*/
/*
analyze( "corrected_tapstotype_standard", "taps by traits", "", ", :Openness, :Openness * :condition, :NFC, :NFC * :condition" );
analyze( "mintaps_standard", "mintaps by traits", "", ", :Openness, :Openness * :condition, :NFC, :NFC * :condition" );
analyze( "num_words", "num words by traits", "", ", :Openness, :Openness * :condition, :NFC, :NFC * :condition" );
analyze(
"num_words",
"num words by traits interaction",
"",
", :Openness, :Openness * :condition, :NFC, :NFC * :condition, :NFC * :Openness, :NFC * :Openness * :condition"
);
(
dt << Contour Plot(
X( :NFC, :Openness ),
Y( :num_words, :mintaps_standard, :corrected_tapstotype_standard ),
Show Data Points( 0 ),
Fill Areas( 0 ),
Label Contours( 0 ),
Transform( "None" ),
)) << set window title("Contours by traits");
*/
/*
// Taps per character, by type. Somewhat unusual graph.
(dt << Graph Builder(
Size( 570, 564 ),
Variables(
X( :condition ),
Y( :taps_per_char ),
Y( :backspaces_per_char, Position( 1 ) ),
Y( Transform Column( "num_tapKey/num_chars", Formula( :num_tapKey / :num_chars ) ), Position( 1 ) ),
Y( Transform Column( "num_tapSugg_any/num_chars", Formula( :num_tapSugg_any / :num_chars ) ), Position( 1 ) )
),
Elements(
Bar( X, Y( 1 ), Legend( 3 ), Error Bars( "Confidence Interval" ) ),
Bar( X, Y( 4 ), Y( 2 ), Y( 3 ), Legend( 5 ), Error Bars( "Standard Error" ), Label( "Label by Percent of Total Values" ) )
),
SendToReport( Dispatch( {"Bar"}, "", OutlineBox, {Close( 0 )} ), Dispatch( {"Bar"}, "", OutlineBox, {Close( 0 )} ) )
)) << set window title( "Taps per Character, by type" );
*/
/** Rec usage */
// Here we do a nonparametric analysis because utilization rate is very non-Normal. Zero- and one-inflated.
blockLevel << Oneway(
By( :experiment ),
Y( :relevant_use_frac ),
X( :condition ),
Block( :participant ),
Means( 1 ),
t Test( 1 ),
CDF Plot( 1 ),
Mean Diamonds( 1 ),
Wilcoxon Each Pair( 1 ),
SendToReport(
Dispatch( {"Oneway Anova"}, "Block Means", OutlineBox, {Close( 1 )} ),
Dispatch( {}, "CDF Plot", OutlineBox, {SetHorizontal( 1 )} )
)
);
(dt << Summary(
Group( :experiment, :participant ),
Mean( :age ),
Mean( :chars_per_sec_norecs_mean ),
Freq( "None" ),
Weight( "None" ),
statistics column name format( "column" )
)) << Graph Builder(
Variables( X( :age ), Y( :chars_per_sec_norecs_mean ) ),
Elements( Points( X, Y, Legend( 3 ) ), Line Of Fit( X, Y, Legend( 7 ), F Test( 1 ) ) )
);
only_norecs = Subset(
dt,
Rows( dt << get rows where( :condition == "norecs" ) )
);
/*** Length nudges ***/
(only_norecs << Graph Builder(
Variables( Y( :num_words ), X( :mintaps_standard ), X( :mintaps_gated ) ),
Elements( Position( 1, 1 ), Points( X, Y, Legend( 3 ) ), Line Of Fit( X, Y, Legend( 11 ), R²( 1 ), Equation( 1 ), F Test( 1 ) ) ),
Elements( Position( 2, 1 ), Points( X, Y, Legend( 8 ) ), Line Of Fit( X, Y, Legend( 11 ), R²( 1 ), Equation( 1 ), F Test( 1 ) ) ),
// Local Data Filter( Add Filter( columns( :mintaps_standard, :num_words, :condition ), Where( :condition == "norecs" ) ) )
)) << set window title( "Longer captions have longer MTPW" );
(only_norecs << Fit Group(
Fit Model(
// Where( :condition == "norecs" ),
Effects( :mintaps_standard ),
Y( :num_words ),
Random Effects( :stimulus ),
NoBounds( 1 ),
Personality( "Standard Least Squares" ),
Method( "REML" ),
Emphasis( "Minimal Report" ),
Run(
:mintaps_standard << {Summary of Fit( 1 ), Analysis of Variance( 0 ), Parameter Estimates( 1 ), Lack of Fit( 0 ),
Show Prediction Expression( 1 ), Scaled Estimates( 0 ), Plot Actual by Predicted( 0 ), Plot Residual by Predicted( 0 ),
Plot Studentized Residuals( 0 ), Plot Effect Leverage( 0 ), Plot Residual by Normal Quantiles( 0 ), Show All Confidence Intervals( 1 )}
)
),
Fit Model(
// Where( :condition == "norecs" ),
Effects( :mintaps_gated ),
Y( :num_words ),
Random Effects( :stimulus ),
NoBounds( 1 ),
Personality( "Standard Least Squares" ),
Method( "REML" ),
Emphasis( "Minimal Report" ),
Run(
:mintaps_gated << {Summary of Fit( 1 ), Analysis of Variance( 0 ), Parameter Estimates( 1 ), Lack of Fit( 0 ),
Show Prediction Expression( 1 ), Scaled Estimates( 0 ), Plot Actual by Predicted( 0 ), Plot Residual by Predicted( 0 ),
Plot Studentized Residuals( 0 ), Plot Effect Leverage( 0 ), Plot Residual by Normal Quantiles( 0 ), Show All Confidence Intervals( 1 )}
)
)
)) << set window title( "System nudges captions towards shorter" );
byMTPW = Function( {response_name, window_title, extra_toplevel = "", extra_effects = ""},
{s, resp},
s = "New Window( \!"" || window_title || "\!",
only_norecs << Graph Builder(
Variables( X( :mintaps_standard ), Y( :" || response_name ||
")),
Elements( Points( X, Y, Legend( 3 ) ), Line Of Fit( X, Y, Legend( 11 ), R²( 1 ), Equation( 1 ), F Test( 1 ) ) ),
SendToReport(
Dispatch( {}, \!"Y title\!", TextEditBox, {Set Text( \!""
|| window_title ||
"\!")} ) ,
Dispatch( {}, \!"graph title\!", TextEditBox, {Set Text( \!"\!" )} ),
),
),
resp = only_norecs << Fit Model(
Y( :"
|| response_name || " ),
Effects( :mintaps_standard" || extra_effects ||
"),
Random Effects( :stimulus ),
NoBounds( 1 ),
Personality( \!"Standard Least Squares\!" ),
Method( \!"REML\!" ),
Emphasis( \!"Minimal Report\!" ),
Run(
Name( \!""
|| response_name ||
"\!" ) << {Summary of Fit( 1 ), Analysis of Variance( 0 ), Parameter Estimates( 1 ), Lack of Fit( 0 ),
Show Prediction Expression( 1 ), Plot Actual by Predicted( 0 ), Plot Regression( 0 ), Plot Residual by Predicted( 0 ),
Plot Studentized Residuals( 0 ), Plot Residual by Normal Quantiles( 1 ),
Plot Effect Leverage( 0 ), Show All Confidence Intervals( 1 ) }
),
SendToReport( Dispatch( \!"Response "
|| response_name || "\!", \!"Effect Details\!", OutlineBox, {Close( 0 )} ) ),
" || extra_toplevel || "
)
)";
Show( s );
Eval( Parse( s ) );
resp;
);
byMTPW("num_words", "num_words nudge");
byMTPW("ADJ", "ADJ nudge");
dt << Graph Builder(
Size( 1877, 579 ),
Variables( X( :Openness ), Y( :corrected_tapstotype_standard ), Overlay( :condition ) ),
Elements( Points( X, Y, Legend( 4 ) ), Line Of Fit( X, Y, Legend( 6 ), F Test( 1 ) ) )
);
posStack = dt << Stack(
columns( :ADJ, :ADP, :ADV, :CCONJ, :DET, :NOUN, :NUM, :PART, :PRON, :PROPN, :PUNCT, :SYM, :VERB ),
Source Label Column( "POS" ),
Stacked Data Column( "Frac" )
);
(posStack << Graph Builder(
Size( 2044, 1290 ),
Variables( X( :mintaps_standard ), Y( :Frac ), Wrap( :POS ) ),
Elements( Points( X, Y, Legend( 6 ) ), Line Of Fit( X, Y, Legend( 7 ), F Test( 1 ) ) ),
SendToReport(
Dispatch(
{},
"400",
ScaleBox,
{Legend Model(
6,
Base( -1, 0, 0, Item ID( "ADJ", 1 ) ),
Base( -1, 0, 0, Item ID( "ADP", 1 ) ),
Base( -1, 0, 0, Item ID( "ADV", 1 ) ),
Base( -1, 0, 0, Item ID( "CCONJ", 1 ) ),
Base( -1, 0, 0, Item ID( "DET", 1 ) ),
Base( -1, 0, 0, Item ID( "NOUN", 1 ) ),
Base( -1, 0, 0, Item ID( "NUM", 1 ) ),
Base( -1, 0, 0, Item ID( "PART", 1 ) ),
Base( -1, 0, 0, Item ID( "PRON", 1 ) ),
Base( -1, 0, 0, Item ID( "PROPN", 1 ) ),
Base( -1, 0, 0, Item ID( "PUNCT", 1 ) ),
Base( -1, 0, 0, Item ID( "SYM", 1 ) ),
Base( -1, 0, 0, Item ID( "VERB", 1 ) )
)}
)
)
)) << set window title( "POS fracs vs MTPW" );