forked from tea-lang-org/tea-lang
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtest_integration.py
More file actions
652 lines (559 loc) · 18.9 KB
/
Copy pathtest_integration.py
File metadata and controls
652 lines (559 loc) · 18.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
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
import pandas as pd
import tea
import os
base_url = 'https://homes.cs.washington.edu/~emjun/tea-lang/datasets/'
file_names = ['UScrime.csv', 'statex77.csv', 'catsData.csv', 'cholesterol.csv', 'soya.csv', 'co2.csv', 'exam.csv', 'liar.csv',
'pbcorr.csv', 'spiderLong_within.csv', 'drug.csv', 'alcohol.csv', 'ecstasy.csv', 'gogglesData.csv', 'gogglesData_dummy.csv']
data_paths = [None] * len(file_names)
def load_data():
global base_url, data_paths, file_names
global drug_path
for i in range(len(data_paths)):
csv_name = file_names[i]
csv_url = os.path.join(base_url, csv_name)
data_paths[i] = tea.download_data(csv_url, csv_name)
def get_data_path(filename):
load_data()
try:
data_idx = file_names.index(filename)
except:
raise ValueError(f"File is not found!:{filename}")
data_path = data_paths[data_idx]
return data_path
# Example from Kabacoff
# Expected outcome: Pearson correlation
def test_pearson_corr():
data_path = get_data_path('statex77.csv')
# data_path2 = get_data_path('statex87.csv')
# Declare and annotate the variables of interest
variables = [
{
'name': 'Illiteracy',
'data type': 'interval',
'categories': [0, 100]
},
{
'name': 'Life Exp',
'data type': 'ratio',
}
]
experimental_design = {
'study type': 'observational study',
'contributor variables': ['Illiteracy', 'Life Exp'],
'outcome variables': ''
}
assumptions = {
'Type I (False Positive) Error Rate': 0.05,
'normal distribution': ['Illiteracy']
}
tea.data(data_path)
# tea.data(data_path2)
tea.define_variables(variables)
# Allows for using multiple study designs for the same dataset (could lead to phishing but also practical for saving analyses and reusing as many parts of analyses as possible)
tea.define_study_design(experimental_design)
tea.assume(assumptions, 'strict')
results = tea.hypothesize(['Illiteracy', 'Life Exp'], [
'Illiteracy ~ Life Exp'])
# print("\nfrom Kabacoff")
# print("Expected outcome: Pearson")
print('++++++++++++')
def test_pearson_corr_2():
data_path = get_data_path('exam.csv')
# Declare and annotate the variables of interest
variables = [
{
'name': 'Exam',
'data type': 'ratio',
'range': [0, 100]
},
{
'name': 'Anxiety',
'data type': 'interval',
'range': [0, 100]
},
{
'name': 'Gender',
'data type': 'nominal',
'categories': ['Male', 'Female']
},
{
'name': 'Revise',
'data type': 'ratio'
}
]
experimental_design = {
'study type': 'observational study',
'contributor variables': ['Anxiety', 'Gender', 'Revise'],
'outcome variables': 'Exam'
}
assumptions = {
'Type I (False Positive) Error Rate': 0.05,
}
tea.data(data_path)
tea.define_variables(variables)
tea.define_study_design(experimental_design)
tea.assume(assumptions)
results = tea.hypothesize(['Anxiety', 'Exam'])
results = tea.hypothesize(['Revise', 'Exam'])
results = tea.hypothesize(['Anxiety', 'Revise'])
# print("\nfrom Field et al.")
# print("Expected outcome: Pearson")
print('++++++++++++')
def test_spearman_corr():
data_path = get_data_path('liar.csv')
# Declare and annotate the variables of interest
variables = [
{
'name': 'Creativity',
'data type': 'interval'
},
{
'name': 'Position',
'data type': 'ordinal',
'categories': [6, 5, 4, 3, 2, 1] # ordered from lowest to highest
},
{
'name': 'Novice',
'data type': 'nominal',
'categories': [0, 1]
}
]
experimental_design = {
'study type': 'observational study',
'contributor variables': ['Novice', 'Creativity'],
'outcome variables': 'Position'
}
assumptions = {
'Type I (False Positive) Error Rate': 0.05,
}
tea.data(data_path)
tea.define_variables(variables)
tea.define_study_design(experimental_design)
tea.assume(assumptions)
# TODO: allow for partial orders?
results = tea.hypothesize(['Position', 'Creativity'], ['Position:1 > 6'])
# print("\nfrom Field et al.")
# print("Expected outcome: Spearman")
print('++++++++++++')
# Same as test for Spearman rho
def test_kendall_tau_corr():
data_path = get_data_path('liar.csv')
# Declare and annotate the variables of interest
variables = [
{
'name': 'Creativity',
'data type': 'interval'
},
{
'name': 'Position',
'data type': 'ordinal',
'categories': [6, 5, 4, 3, 2, 1] # ordered from lowest to highest
},
{
'name': 'Novice',
'data type': 'nominal',
'categories': [0, 1]
}
]
experimental_design = {
'study type': 'observational study',
'contributor variables': ['Novice', 'Creativity'],
'outcome variables': 'Position'
}
assumptions = {
'Type I (False Positive) Error Rate': 0.05,
}
tea.data(data_path)
tea.define_variables(variables)
tea.define_study_design(experimental_design)
tea.assume(assumptions)
results = tea.hypothesize(['Position', 'Creativity'], [
'Position:1 > 6', 'Position:1 > 2']) # I think this works!?
# print("\nfrom Field et al.")
# print("Expected outcome: Kendall Tau")
print('++++++++++++')
def test_pointbiserial_corr():
data_path = get_data_path('pbcorr.csv')
# Declare and annotate the variables of interest
variables = [
{
'name': 'time',
'data type': 'ratio'
},
{
'name': 'gender',
'data type': 'nominal',
'categories': [0, 1] # ordered from lowest to highest
},
{
'name': 'recode',
'data type': 'nominal',
'categories': [0, 1]
}
]
experimental_design = {
'study type': 'observational study',
'contributor variables': ['gender', 'recode'],
'outcome variables': 'time'
}
assumptions = {
'Type I (False Positive) Error Rate': 0.05,
}
tea.data(data_path)
tea.define_variables(variables)
tea.define_study_design(experimental_design)
tea.assume(assumptions)
# I think this works!?
tea.hypothesize(['time', 'gender'], ['gender:1 > 0'])
# print("\nfrom Field et al.")
# print("Expected outcome: Pointbiserial")
print('++++++++++++')
def test_indep_t_test():
data_path = get_data_path('UScrime.csv')
# Declare and annotate the variables of interest
variables = [
{
'name': 'So',
'data type': 'nominal',
'categories': [0, 1]
},
{
'name': 'Prob',
'data type': 'ratio',
'range': [0, 1]
}
]
experimental_design = {
'study type': 'observational study',
'contributor variables': 'So',
'outcome variables': 'Prob',
}
assumptions = {
'Type I (False Positive) Error Rate': 0.05,
'groups normally distributed': [['Prob', 'So']]
}
transformations = {
'log': ['Prob']
}
tea.data(data_path)
tea.define_variables(variables)
# Allows for using multiple study designs for the same dataset (could lead to phishing but also practical for saving analyses and reusing as many parts of analyses as possible)
tea.define_study_design(experimental_design)
tea.assume(assumptions)
tea.hypothesize(['So', 'Prob'], ['So:1 > 0']) # Southern is greater
# print("\nfrom Kabacoff")
# print("Expected outcome: Student's t-test")
print('++++++++++++')
def test_paired_t_test():
data_path = get_data_path('spiderLong_within.csv')
# Declare and annotate the variables of interest
variables = [
{
'name': 'Group',
'data type': 'nominal',
'categories': ['Picture', 'Real Spider']
},
{
'name': 'Anxiety',
'data type': 'ratio'
}
]
experimental_design = {
'study type': 'experiment',
'independent variables': 'Group',
'dependent variables': 'Anxiety',
'within subjects': 'Group'
}
assumptions = {
'Type I (False Positive) Error Rate': 0.05
}
tea.data(data_path, key="id")
tea.define_variables(variables)
# Allows for using multiple study designs for the same dataset (could lead to phishing but also practical for saving analyses and reusing as many parts of analyses as possible)
tea.define_study_design(experimental_design)
tea.assume(assumptions)
tea.hypothesize(['Group', 'Anxiety'], ['Group:Real Spider > Picture'])
# print("\nfrom Field et al.")
# print("Expected outcome: Paired/Dependent t-test")
print('++++++++++++')
def test_wilcoxon_signed_rank():
data_path = get_data_path('alcohol.csv')
# Declare and annotate the variables of interest
variables = [
{
'name': 'drug',
'data type': 'nominal',
'categories': ['Alcohol']
},
{
'name': 'day',
'data type': 'nominal',
'categories': ['sundayBDI', 'wedsBDI']
},
{
'name': 'value',
'data type': 'ratio'
}
]
experimental_design = {
'study type': 'experiment',
'independent variables': 'day',
'dependent variables': 'value',
'within subjects': 'day'
}
assumptions = {
'Type I (False Positive) Error Rate': 0.05
}
tea.data(data_path)
tea.define_variables(variables)
# Allows for using multiple study designs for the same dataset (could lead to phishing but also practical for saving analyses and reusing as many parts of analyses as possible)
tea.define_study_design(experimental_design)
tea.assume(assumptions)
tea.hypothesize(['day', 'value'], ['day:sundayBDI != wedsBDI'])
# print("\nfrom Field et al.")
# print("Expected outcome: Wilcoxon signed rank test")
print('++++++++++++')
def test_f_test():
data_path = get_data_path('cholesterol.csv')
# Declare and annotate the variables of interest
variables = [
{
'name': 'trt',
'data type': 'nominal',
'categories': ['1time', '2times', '4times', 'drugD', 'drugE']
},
{
'name': 'response',
'data type': 'ratio'
}
]
experimental_design = {
'study type': 'experiment',
'independent variables': 'trt',
'dependent variables': 'response',
'between subjects': 'trt'
}
assumptions = {
'Type I (False Positive) Error Rate': 0.05,
}
tea.data(data_path)
tea.define_variables(variables)
# Allows for using multiple study designs for the same dataset (could lead to phishing but also practical for saving analyses and reusing as many parts of analyses as possible)
tea.define_study_design(experimental_design)
tea.assume(assumptions)
tea.hypothesize(['trt', 'response'])
# print("\nFrom Field et al.")
# print("Expected outcome: Oneway ANOVA (F) test")
print('++++++++++++')
def test_kruskall_wallis():
data_path = get_data_path('soya.csv')
# Declare and annotate the variables of interest
variables = [
{
'name': 'Sperm',
'data type': 'interval'
},
{
'name': 'Soya',
'data type': 'ordinal',
'categories': ['No Soya', '1 Soya Meal', '4 Soya Meals', '7 Soya Meals']
}
]
experimental_design = {
'study type': 'experiment',
'independent variables': 'Soya',
'dependent variables': 'Sperm',
'between subjects': 'Soya'
}
assumptions = {
'Type I (False Positive) Error Rate': 0.05,
}
tea.data(data_path)
tea.define_variables(variables)
# Allows for using multiple study designs for the same dataset (could lead to phishing but also practical for saving analyses and reusing as many parts of analyses as possible)
tea.define_study_design(experimental_design)
tea.assume(assumptions)
tea.hypothesize(['Soya', 'Sperm'])
# print("\nFrom Field et al.")
# print("Expected outcome: Kruskall Wallis")
print('++++++++++++')
def test_rm_one_way_anova():
data_path = get_data_path('co2.csv')
# Declare and annotate the variables of interest
variables = [
{
'name': 'uptake',
'data type': 'interval'
},
{
'name': 'Type',
'data type': 'nominal',
'categories': ['Quebec', 'Mississippi']
},
{
'name': 'conc',
'data type': 'ordinal',
'categories': [95, 175, 250, 350, 500, 675, 1000]
}
]
experimental_design = {
'study type': 'experiment',
'independent variables': ['Type', 'conc'],
'dependent variables': 'uptake',
'within subjects': 'conc',
'between subjects': 'Type'
}
assumptions = {
'Type I (False Positive) Error Rate': 0.05,
}
tea.data(data_path, key="Plant")
tea.define_variables(variables)
# Allows for using multiple study designs for the same dataset (could lead to phishing but also practical for saving analyses and reusing as many parts of analyses as possible)
tea.define_study_design(experimental_design)
tea.assume(assumptions)
tea.hypothesize(['uptake', 'conc'])
# print("\nFrom Field et al.")
# print("Expected outcome: Repeated Measures One Way ANOVA")
print('++++++++++++')
def test_factorial_anova():
data_path = get_data_path('gogglesData.csv')
# Declare and annotate the variables of interest
variables = [
{
'name': 'gender',
'data type': 'nominal',
'categories': ['Female', 'Male']
},
{
'name': 'alcohol',
'data type': 'nominal',
'categories': ['None', '2 Pints', '4 Pints']
},
{
'name': 'attractiveness',
'data type': 'interval'
}
]
experimental_design = {
'study type': 'experiment',
'independent variables': ['gender', 'alcohol'],
'dependent variables': 'attractiveness',
'between subjects': ['gender', 'alcohol']
}
assumptions = {
'Type I (False Positive) Error Rate': 0.05,
}
tea.data(data_path)
tea.define_variables(variables)
# Allows for using multiple study designs for the same dataset (could lead to phishing but also practical for saving analyses and reusing as many parts of analyses as possible)
tea.define_study_design(experimental_design)
tea.assume(assumptions)
tea.hypothesize(['attractiveness', 'gender', 'alcohol'])
# alcohol main effect?
# print("\nFrom Field et al.")
# print("Expected outcome: Factorial ANOVA")
print('++++++++++++')
def test_two_way_anova():
data_path = get_data_path('co2.csv')
# Declare and annotate the variables of interest
variables = [
{
'name': 'uptake',
'data type': 'interval'
},
{
'name': 'Type',
'data type': 'nominal',
'categories': ['Quebec', 'Mississippi']
},
{
'name': 'conc',
'data type': 'ordinal',
'categories': [95, 175, 250, 350, 500, 675, 1000]
}
]
experimental_design = {
'study type': 'experiment',
'independent variables': ['Type', 'conc'],
'dependent variables': 'uptake',
'within subjects': 'conc',
'between subjects': 'Type'
}
assumptions = {
'Type I (False Positive) Error Rate': 0.05,
'groups normally distributed': [['Type', 'uptake'], ['Type', 'conc']],
'equal variance': [['Type', 'uptake'], ['conc', 'uptake']]
}
tea.data(data_path)
tea.define_variables(variables)
# Allows for using multiple study designs for the same dataset (could lead to phishing but also practical for saving analyses and reusing as many parts of analyses as possible)
tea.define_study_design(experimental_design)
tea.assume(assumptions, mode='relaxed')
# Fails: not all groups are normal
tea.hypothesize(['uptake', 'conc', 'Type'])
# Type main effect?
# print('Supposed to be 2 way ANOVA')
print('++++++++++++')
def test_chi_square():
data_path = get_data_path('catsData.csv')
# Declare and annotate the variables of interest
variables = [
{
'name': 'Training',
'data type': 'nominal',
'categories': ['Food as Reward', 'Affection as Reward']
},
{
'name': 'Dance',
'data type': 'nominal',
'categories': ['Yes', 'No']
}
]
experimental_design = {
'study type': 'observational study',
'contributor variables': 'Training',
'outcome variables': 'Dance'
}
assumptions = {
'Type I (False Positive) Error Rate': 0.05,
}
tea.data(data_path)
tea.define_variables(variables)
# Allows for using multiple study designs for the same dataset (could lead to phishing but also practical for saving analyses and reusing as many parts of analyses as possible)
tea.define_study_design(experimental_design)
tea.assume(assumptions)
tea.hypothesize(['Training', 'Dance'])
# print('Chi square')
print('++++++++++++')
def test_chi_square_with_dataframe():
data_path = get_data_path('catsData.csv')
data_frame = pd.read_csv(data_path)
# Declare and annotate the variables of interest
variables = [
{
'name': 'Training',
'data type': 'nominal',
'categories': ['Food as Reward', 'Affection as Reward']
},
{
'name': 'Dance',
'data type': 'nominal',
'categories': ['Yes', 'No']
}
]
experimental_design = {
'study type': 'observational study',
'contributor variables': 'Training',
'outcome variables': 'Dance'
}
assumptions = {
'Type I (False Positive) Error Rate': 0.05,
}
tea.data(data_frame) # Passes data_frame instead of data_path
tea.define_variables(variables)
# Allows for using multiple study designs for the same dataset (could lead to phishing but also practical for saving analyses and reusing as many parts of analyses as possible)
tea.define_study_design(experimental_design)
tea.assume(assumptions)
tea.hypothesize(['Training', 'Dance'])
# print('Chi square')
print('++++++++++++')